首先,您有一个语法错误。如果您的短代码存储在$output
变量,则需要调用echo do_schortcode($output);
.
但是,不仅仅是the_content();
达到理想的结果我相信如果你这样做的话,短代码将会被处理。
您可以使用进行新查询WP_Query, 然后使用the_content()
消息灵通的
$args = array(
\'post_type\' => \'post\', // This selects only posts
\'post_status\' => \'publish\' // Only published posts
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post(); ?>
<li><?php the_content(); ?></li>
<?php }
echo \'</ul>\';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}