自定义查询快捷码:在任何帖子/页面中运行循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义查询快捷码:在任何帖子/页面中运行循环相关的知识,希望对你有一定的参考价值。
function custom_query_shortcode($atts) { // EXAMPLE USAGE: // [loop the_query="showposts=100&post_type=page&post_parent=453"] // Defaults "the_query" => '' ), $atts)); // de-funkify query // query is made query_posts($the_query); // Reset and setup variables $output = ''; $temp_title = ''; $temp_link = ''; // the loop if (have_posts()) : while (have_posts()) : the_post(); $temp_title = get_the_title($post->ID); $temp_link = get_permalink($post->ID); // output all findings - CUSTOMIZE TO YOUR LIKING $output .= "<li><a href='$temp_link'>$temp_title</a></li>"; endwhile; else: $output .= "nothing found."; endif; wp_reset_query(); return $output; } add_shortcode("loop", "custom_query_shortcode"); [loop the_query="showposts=20&post_type=page&post_parent=453&ord=ASC"]
以上是关于自定义查询快捷码:在任何帖子/页面中运行循环的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress term_exist 没有回显任何东西?