如何判断WordPress文章设置了特色图像函数:has_post_thumbnail

  WordPress函数has_post_thumbnail用于确定当前文章是否有特征图像集,即它是否包含缩…

  WordPress函数has_post_thumbnail用于确定当前文章是否有特征图像集,即它是否包含缩略图。如何判断WordPress文章设置了特色图像函数:has_post_thumbnail。

%e5%a6%82%e4%bd%95%e5%88%a4%e6%96%adwordpress%e6%96%87%e7%ab%a0%e8%ae%be%e7%bd%ae%e4%ba%86%e7%89%b9%e8%89%b2%e5%9b%be%e5%83%8f%e5%87%bd%e6%95%b0%ef%bc%9ahas_post_thumbnail

  has_post_thumbnail( int|WP_Post $post = null )

  函数参数

  $post

  整数或对象,默认值:null

  文章ID或文章对象,不需要在The Loop循环中传递参数。

  has_post_thumbnail()函数的示例

  下面的示例在当前文章具有设置功能图像时输出相应的缩略图,如果未设置默认缩略图,则输出默认缩略图。

  if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { echo ‘<img src=”‘ . get_bloginfo( ‘stylesheet_directory’ ) . ‘/images/thumbnail-default.jpg” />’; }

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册