我创建了一个自定义帖子类型,并希望创建一个页面来列出此帖子类型的帖子。
我见过许多插件与现有页面“绑定”相同的东西,即用户创建一个普通的wp页面转到插件的设置并设置创建的页面。作为一个例子,这是一个非常好的人。
那么“绑定”到wp页面的最佳方式是什么?
已尝试the_content
操作,但显然此操作未针对页面调用...
add_action( 'the_content', array($this, 'renderCardListing') );
[...]
public function renderCardListing($content) {
if ( is_single() ) {
global $post;
$card_listing_id = get_option('card_listing_page');
if ( $card_listing_id != 'none' && $card_listing_id == $post->ID ) {
$content = 'Test Working!';
}
return $content;
}
}