特定のショートコードがあった場合にスクリプトをヘッダに追加できるように、ロード前にページ/投稿コンテンツをフィルタする方法が必要でした。多くの検索の後、私はこれに出会いました http://wpengineer.com
function has_my_shortcode($posts) {
if ( empty($posts) )
return $posts;
$found = false;
foreach ($posts as $post) {
if ( stripos($post->post_content, '[my_shortcode') )
$found = true;
break;
}
if ($found){
$urljs = get_bloginfo( 'template_directory' ).IMP_JS;
wp_register_script('my_script', $urljs.'myscript.js' );
wp_print_scripts('my_script');
}
return $posts;
}
add_action('the_posts', 'has_my_shortcode');
これは絶対に素晴らしいもので、まさに私が必要としていたことでした。
今、私はそれをもう少し拡張する必要があり、サイドバーについても同じことをします。特定のウィジェットタイプ、ショートコード、コードスニペット、またはスクリプトをいつロードする必要があるかを識別するために機能するその他のものによって行われます。
問題は、サイドバーが読み込まれる前にサイドバーのコンテンツにアクセスする方法がわからないことです(問題のテーマにはいくつかのサイドバーがあります)。
関数 is_active_widget を使うことができます。例えば。:
function check_widget() {
if( is_active_widget( '', '', 'search' ) ) { // check if search widget is used
wp_enqueue_script('my-script');
}
}
add_action( 'init', 'check_widget' );
ウィジェットのみがロードされているページにスクリプトをロードするには、ウィジェットクラスにis_active_widget()コードを追加する必要があります。たとえば、デフォルトの最近のコメントウィジェット(wp-includes/default-widgets.php、行602)を参照してください。
class WP_Widget_Recent_Comments extends WP_Widget {
function WP_Widget_Recent_Comments() {
$widget_ops = array('classname' => 'widget_recent_comments', 'description' => __( 'The most recent comments' ) );
$this->WP_Widget('recent-comments', __('Recent Comments'), $widget_ops);
$this->alt_option_name = 'widget_recent_comments';
if ( is_active_widget(false, false, $this->id_base) )
add_action( 'wp_head', array(&$this, 'recent_comments_style') );
add_action( 'comment_post', array(&$this, 'flush_widget_cache') );
add_action( 'transition_comment_status', array(&$this, 'flush_widget_cache') );
}
私が取り組んだ解決策を共有したいと思っただけで、私の実装ではもう少し用途が広くなりました。関数にさまざまなショートコードをチェックさせるのではなく、キューに入れる必要があるスクリプト/スタイル関数を参照する単一のショートコードを探すように修正しました。これは他のクラスのメソッド(これを行わないかもしれないプラグインなど)とスコープ内の関数の両方に対して機能します。以下のコードをfunctions.phpにドロップして、特定のCSSおよびJSが必要なページ/投稿に次の構文を追加してください。
ページ/投稿構文:[loadCSSandJS function = "(クラス - >メソッド/関数名)"]
functions.phpコード:
function page_specific_CSSandJS( $posts ) {
if ( empty( $posts ) )
return $posts;
foreach ($posts as $post) {
$returnValue = preg_match_all('#\[loadCSSandJS function="([A-z\-\>]+)"\]#i', $post->post_content, $types);
foreach($types[1] as $type) {
$items = explode("->",$type);
if (count($items) == 2) {
global $$items[0];
if( method_exists( $$items[0], $items[1] ))
add_action( 'wp_enqueue_scripts', array(&$$items[0], $items[1]) );
}
else if( !empty( $type ) && function_exists( $type ))
add_action( 'wp_enqueue_scripts', $type );
}
}
return $posts;
}
これにより、ページに必要なだけ追加することもできます。ロードするにはメソッド/関数が必要であることを覚えておいてください。
wordpress 4.7ではfunctions.php
ファイルでこれを達成する別の方法があります。
add_action( 'wp_enqueue_scripts', 'register_my_script');
function register_my_script(){
wp_register_script('my-shortcode-js',$src, $dependency, $version, $inFooter);
}
まずあなたの あなたのscript を登録してください。これはあなたのショートコードが呼ばれたならばそれをあなたがエンキューしない限り実際にはあなたのページに印刷されません。
add_filter( 'do_shortcode_tag','enqueue_my_script',10,3);
function enqueue_my_script($output, $tag, $attr){
if('myShortcode' != $tag){ //make sure it is the right shortcode
return $output;
}
if(!isset($attr['id'])){ //you can even check for specific attributes
return $output;
}
wp_enqueue_script('my-shortcode-js'); //enqueue your script for printing
return $output;
}
do_shortcode_tag
は WP 4.7 で導入され、 新しい開発者用ドキュメント のページ)で見つけることができます。
このヒントを共有してくれてありがとう!最初はうまくいかなかったので、それは私に少し頭痛を与えました。私はhas_my_shortcode
の上のコードにいくつかの間違い(おそらくタイプミス)があると思います、そして私は以下のように関数を書き直しました:
function has_my_shortcode( $posts ) {
if ( empty($posts) )
return $posts;
$shortcode_found = false;
foreach ($posts as $post) {
if ( !( stripos($post->post_content, '[my-shortcode') === false ) ) {
$shortcode_found = true;
break;
}
}
if ( $shortcode_found ) {
$this->add_scripts();
$this->add_styles();
}
return $posts;
}
私は2つの主な問題があったと思います:break
はif文の範囲内ではなかった、そしてそれはループが常に最初の反復で中断することを引き起こしました。もう一つの問題はもっと微妙で発見が困難でした。ショートコードが投稿に書かれた最初のものである場合、上記のコードは機能しません。これを解決するには===
演算子を使わなければなりませんでした。
とにかく、このテクニックを共有してくれてどうもありがとう、それは大いに役立ちました。