1
私のwp_head();
コールの直前にPHPを使ってこのコードを追加する必要があります。なぜなら、コードはサーバー側を実行する必要があるからです。私のwp_head();
にコードをフックすることはできません。私はそれを直前に追加する必要があります。追加するPHPコードは次のとおりです。ここでブラウザに返される前に、ページの正確な位置にPHPコードを動的に追加するにはどうすればよいですか?
gravity_form_enqueue_scripts(1,true);
コードを挿入する必要がある場合です:
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if (is_singular() && get_option('thread_comments'))
wp_enqueue_script('comment-reply');
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
gravity_form_enqueue_scripts(1,true);
wp_head(); ?>
コードがブラウザに戻るには表示されないようにしてください。このPHPスニペットをこの正確な場所に動的に追加するにはどうすればよいですか?
これはjQueryとPHPの組み合わせで可能ですか? –
たぶん私はそれをワードプレスの別のアクションにつなぐべきでしょうか? –