私はWordpressサイトでshow_post.jsというスクリプトを使用しようとしています。私は正常にheader.phpの中でそれを直接ロードされました:wp_enqueue_scriptを使用しているときにスクリプトを読み込むことができません
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript" src="wp-content/themes/tutorial_theme/scripts/show_post.js"></script>
しかし、私はのfunctions.phpを経由して、それが動作しませんwp_enqueue_scriptそれをやろうとしているとき。ここに私のfunctions.phpファイルがあります:
<?php function wpdocs_scripts_method() {
wp_enqueue_script('show_p', '/wp-content/themes/tutorial_theme/scripts/show_post.js', array('jquery'));
}
add_action('wp_enqueue_scripts', 'wpdocs_scripts_method');
?>
私はここで間違っていますか?
あなたはheader.phpのファイルに前wp_head()関数を追加して、あなたはどのテーマを働いている子テーマや親のテーマ? ? – vrajesh