wordpress中is_sticky()判断文章是否置顶的参数与用法

【说明】

检查当前文章是否置顶。返回值TRUE 或者 FALSE.

【用法】

<?php is_sticky($post_ID); ?>

【参数】
$post_ID
(string) (optional) 文章 ID
默认: None
返回值
(boolean)
True,或 false.

【示例】

is_sticky();
// 任意置顶文章被显示.</p> <p>is_sticky(’17’);
// 当ID为17的文章被显示.

【源文件】

is_sticky() 位于 wp-includes/post.php.

PHP Code复制内容到剪贴板

  1. /**  
  2.  * Check if post is sticky.  
  3.  * Sticky posts should remain at the top of The Loop. If the post ID is not 
  4.  * given, then The Loop ID for the current post will be used.  
  5.  * @since 2.7.0  
  6.  * @param int $post_id Optional. Post ID.  
  7.  * @return bool Whether post is sticky.  
  8.  */  
  9. function is_sticky( $post_id = 0 ) {   
  10.  $post_id = absint( $post_id );   
  11.  if ( ! $post_id )   
  12.   $post_id = get_the_ID();   
  13.  $stickies = get_option( ‘sticky_posts’ );   
  14.  if ( ! is_array$stickies ) )   
  15.   return false;   
  16.  if ( in_array( $post_id$stickies ) )   
  17.   return true;   
  18.  return false;   
  19. }  

这里要举例说明的是:

is_sticky(10) 是判断 $post_id为 10的文章是否是置顶文章,而不是说所有置顶文章中post_id为 10的置顶文章。之所以会有后者错误的理解,也是自己看了官方对于 is_sticky($post_id)方法用法文档比较模糊的介绍,其实细究起来,“所有置顶文章中post_id为 10的置顶文章” 这种判断也是多余的,直接 $post->id==10 或 get_the_id()==10 判断当前文章$post_id是否等于10 就好了!

© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发

请登录后发表评论