在循环外使用自定义字段的自定义Wordpress查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在循环外使用自定义字段的自定义Wordpress查询相关的知识,希望对你有一定的参考价值。
$quote -- name of functionpost_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
<?php $quote = get_posts('post_type=page&showposts=1&meta_key=quote&orderby=rand'); foreach($quote as $post) : setup_postdata($post); ?> <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> <em><?php echo get_post_meta($post->ID, "quote-author", true); ?></em></li> <?php endforeach; ?>
以上是关于在循环外使用自定义字段的自定义Wordpress查询的主要内容,如果未能解决你的问题,请参考以下文章