私はこの質問に答えるのが遅れていますが、Ianが今日wp-hackersリストでこのスレッドを開始したので、特に私が取り組んでいるいくつかのプラグインにそのような機能を追加することを計画していることを考えると、答える価値があると思いました。
検討すべきアプローチは、最初のページの読み込みでショートコードが実際に使用されているかどうかを確認し、ショートコードの使用状況をポストメタキーに保存することです。方法は次のとおりです。
ステップバイステップのハウツー
$shortcode_used
フラグをに設定し'no'
ます。
- ショートコード関数自体で
$shortcode_used
フラグをに設定し'yes'
ます。
- WordPressがショートコードを処理した後の
'the_content'
フックの優先順位12
を設定''
し、キーを使用するためにポストメタをチェックします"_has_{$shortcode_name}_shortcode"
。(''
投稿IDの投稿メタキーが存在しない場合、値が返されます。)
'save_post'
フックを使用して、ユーザーがショートコードの使用を変更した場合に備えて、投稿の永続フラグをクリアする投稿メタを削除します。
- また、
'save_post'
フック内で、wp_remote_request()
非ブロッキングHTTP GETを投稿の独自のパーマリンクに送信して、最初のページのロードと永続フラグの設定をトリガーします。
- 最後に設定
'wp_print_styles'
しての値をポストメタをチェックし'yes'
、'no'
または''
キーを使用して"_has_{$shortcode_name}_shortcode"
。値が'no'
外部に配信されない場合。値がある場合、'yes'
または''
先に進み、外部にサービスを提供します。
そして、それはそれを行う必要があります。これがどのように機能するかを示すために、プラグインの例を作成してテストしました。
プラグインコードの例
プラグインは、ページ上の要素を[trigger-css]
赤白に設定するショートコードで起動し、<h2>
簡単に機能することを確認できます。このCSS css
を含むstyle.css
ファイルを含むサブディレクトリを想定しています。
/*
* Filename: css/style.css
*/
h2 {
color: white;
background: red;
}
そして、以下は動作するプラグインのコードです:
<?php
/**
* Plugin Name: CSS on Shortcode
* Description: Shows how to conditionally load a shortcode
* Author: Mike Schinkel <mike@newclarity.net>
*/
class CSS_On_Shortcode {
/**
* @var CSS_On_Shortcode
*/
private static $_this;
/**
* @var string 'yes'/'no' vs. true/false as get_post_meta() returns '' for false and not found.
*/
var $shortcode_used = 'no';
/**
* @var string
*/
var $HAS_SHORTCODE_KEY = '_has_trigger-css_shortcode';
/**
*
*/
function __construct() {
self::$_this = $this;
add_shortcode( 'trigger-css', array( $this, 'do_shortcode' ) );
add_filter( 'the_content', array( $this, 'the_content' ), 12 ); // AFTER WordPress' do_shortcode()
add_action( 'save_post', array( $this, 'save_post' ) );
add_action( 'wp_print_styles', array( $this, 'wp_print_styles' ) );
}
/**
* @return CSS_On_Shortcode
*/
function this() {
return self::$_this;
}
/**
* @param array $arguments
* @param string $content
* @return string
*/
function do_shortcode( $arguments, $content ) {
/**
* If this shortcode is being used, capture the value so we can save to post_meta in the 'the_content' filter.
*/
$this->shortcode_used = 'yes';
return '<h2>THIS POST WILL ADD CSS TO MAKE H2 TAGS WHITE ON RED</h2>';
}
/**
* Delete the 'has_shortcode' meta value so that it can be regenerated
* on first page load in case shortcode use has changed.
*
* @param int $post_id
*/
function save_post( $post_id ) {
delete_post_meta( $post_id, $this->HAS_SHORTCODE_KEY );
/**
* Now load the post asynchronously via HTTP to pre-set the meta value for $this->HAS_SHORTCODE_KEY.
*/
wp_remote_request( get_permalink( $post_id ), array( 'blocking' => false ) );
}
/**
* @param array $args
*
* @return array
*/
function wp_print_styles( $args ) {
global $post;
if ( 'no' != get_post_meta( $post->ID, $this->HAS_SHORTCODE_KEY, true ) ) {
/**
* Only bypass if set to 'no' as '' is unknown.
*/
wp_enqueue_style( 'css-on-shortcode', plugins_url( 'css/style.css', __FILE__ ) );
}
}
/**
* @param string $content
* @return string
*/
function the_content( $content ) {
global $post;
if ( '' === get_post_meta( $post->ID, $this->HAS_SHORTCODE_KEY, true ) ) {
/**
* This is the first time the shortcode has ever been seen for this post.
* Save a post_meta key so that next time we'll know this post uses this shortcode
*/
update_post_meta( $post->ID, $this->HAS_SHORTCODE_KEY, $this->shortcode_used );
}
/**
* Remove this filter now. We don't need it for this post again.
*/
remove_filter( 'the_content', array( $this, 'the_content' ), 12 );
return $content;
}
}
new CSS_On_Shortcode();
スクリーンショットの例
これが一連のスクリーンショットです
基本的な投稿エディタ、コンテンツなし
投稿表示、コンテンツなし
[trigger-css]
ショートコード付きの基本的な投稿エディター
[trigger-css]
ショートコードを使用した投稿表示
100%かどうかわからない
上記はほとんどすべての場合に機能するはずですが、このコードを書いたばかりなので、100%確信することはできません。それが機能しない状況を見つけることができる場合、私は本当に知りたいので、私はこれを追加したばかりのいくつかのプラグインのコードを修正できます。前もって感謝します。