如果一篇文章被扔进了垃圾桶,我可以在我的主题中加入什么来判断它呢?
例如:
<?php if (is_trash) echo \'This post is in the trash!\' ?>
如果一篇文章被扔进了垃圾桶,我可以在我的主题中加入什么来判断它呢?
例如:
<?php if (is_trash) echo \'This post is in the trash!\' ?>
你可以使用get_post_status()
:
function is_trash( $post_id = 0 )
{
0 == $post_id and $post_id = get_the_ID();
return \'trash\' === get_post_status( $post_id );
}
旁注:要获取所有已注册post状态对象的列表,请使用get_post_stati()
– 是的,那是wrong.