特定の投稿やページが読み込まれたときに関数を実行する必要があります。ページの読み込み中に投稿が表示されているかどうかを確認するためのフックはありますか。
wp
フックを使用してglobal $wp_query
オブジェクトまたは任意の条件をチェックすることができます。
add_action( 'wp', 'wpse69369_special_thingy' );
function wpse69369_special_thingy()
{
if (
'special_cpt' === get_post_type()
AND is_singular()
)
return print "Yo World!";
return printf(
'<p>Nothing to see here! Check the object!<br /></p><pre>%s</pre>',
var_export( $GLOBALS['wp_query'], true )
);
}
Codex.wordpress.orgの wp
およびdeveloper.wordpress.orgの wp
を参照してください。
template_redirect
を使用してください。これはテンプレートをレンダリングする前に起動するアクションフックです。
add_action('template_redirect', 'hooker');
function hooker(){
//I load just before selecting and rendering the template to screen
}
私は(カスタム投稿ではなく)ページ上のカスタムメタボックスにロードするために以下を頻繁に使用しました。
add_action('admin_init','how_we_do_it_meta');
function how_we_do_it_meta() {
if ( $_SERVER['SCRIPT_NAME'] == '/wp-admin/post.php' ) {
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'];
$template_file = get_post_meta($post_id,'_wp_page_template',TRUE);
if ($template_file == 'page-how-we-do-it.php') {
add_meta_box('how_we_do_it_who-meta', 'Who we work with...', 'how_we_do_it_who', 'page', 'normal', 'high');
add_action('save_post', 'save_how_we_do_it_meta');
}
}
}