如何检查帖子是否粘滞?

时间:2013-06-16 作者:Zen Nguyễn

我想检查一个帖子一个帖子有粘性或者没有做一些功能。感谢大家的帮助;)

1 个回复
SO网友:fuxia

使用is_sticky( $post_id ) 要测试帖子是否为粘性帖子,请执行以下操作:

if ( is_sticky() )
    echo \'I am sticky!\';


if ( is_sticky( 123 ) )
    echo \'The post with the ID 123 is sticky!\';

结束

相关推荐