2011-02-08 3 views
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スニペットをこの正確な場所に動的に追加するにはどうすればよいですか?

+0

これはjQueryとPHPの組み合わせで可能ですか? –

+0

たぶん私はそれをワードプレスの別のアクションにつなぐべきでしょうか? –

答えて

1

私が実際に必要な:

add_action('wp', 'gforms_add_before_wp_head'); 

ない

add_action('wp_head', 'gforms_add_before_wp_head'); 

私はちょうどにadd_actionする右フックを見つける必要が判明しました。

関連する問題