在循环外使用自定义字段的自定义Wordpress查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在循环外使用自定义字段的自定义Wordpress查询相关的知识,希望对你有一定的参考价值。

$quote -- name of function
post_type=page -- remove to query posts
orderby=rand -- random order
showposts=1 -- limit to 1 post

effect -- displays 1 random custom excerpt outside of the loop
  1. <?php $quote = get_posts('post_type=page&showposts=1&meta_key=quote&orderby=rand'); foreach($quote as $post) : setup_postdata($post); ?>
  2. <li class="quote"><a href="<?php the_permalink(); ?>" title="Read the <?php the_title(); ?> case study"><?php echo get_post_meta($post->ID, "quote", true); ?></a>
  3. <em><?php echo get_post_meta($post->ID, "quote-author", true); ?></em></li>
  4. <?php endforeach; ?>

以上是关于在循环外使用自定义字段的自定义Wordpress查询的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在WordPress中显示循环外的自定义字段

在WordPress中显示循环外的自定义字段

PHP 循环外的Wordpress自定义字段

循环外的Wordpress自定义字段

Wordpress 中带有前缀的自定义字段的自定义简码

WooCommerce:为特定页面添加使用 WordPress 自定义字段添加到购物车旁边的自定义按钮