我是wordpress主题的新手。我正在开发一个主题但是使用$recent_posts = wp_get_recent_posts($args);
foreach( $recent_posts as $recent ){
echo $recent[post_content];
}
它没有显示内容。
post_content
为什么没有显示。但 navigator.serviceWorkerContainer.register('service-worker.js').then(function(reg){
显示了内容。
答案 0 :(得分:0)
在WordPress循环操作中显示帖子摘录。
如果您在帖子的摘录部分发布了一些内容。
$recent_posts = wp_get_recent_posts($args);
print_r($recent_posts);
foreach( $recent_posts as $recent )
{
echo $recent[the_excerpt];
}
这将有助于您单独显示Post Excerpt。
答案 1 :(得分:0)
另一种解决方案可以是:
<?php
global $post;
$recent_posts = wp_get_recent_posts($args);
if( $recent_posts-> have_post()) : while( $recent_posts->have_post()) : $recent_posts->the_post(); ?>
<?php echo $post->post_excerpt; ?>
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); ?>