如果您指的是一篇文章,而不是一个页面,那么请使用条件标记is_single()
检查一下,比如:
function demo_link() {
if ( is_single() && in_category( \'themes\' ) ) {
// Some code #1
} else {
// Some code #2
}
}
add_action( \'thesis_hook_after_post_box\', \'demo_link\' );
如果您将在页面上使用它,请使用WP中的静态post类型,然后使用
is_page()
或使用
is_singular()
用于帖子和页面。当前示例检查post,如果在“主题”类别中,则检查输出“Some code#1”,如果不是此条件语句,则检查输出“Some code#2”。