我在wordpress中拥有自己的网站,它在直播之前就完美无缺。 但是在Live我的博客文章没有出现之后
<?php the_content(); ?>
在我的single.php中无法正常工作。 我需要做什么? 是什么原因?
答案 0 :(得分:0)
使用此
<?php while ( have_posts() ) : the_post();
echo get_the_content();
endwhile; ?>
答案 1 :(得分:0)
试试这个
获取所有帖子
<?php
$myposts = get_posts();
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_content(); ?></a>
<?php endforeach;
wp_reset_postdata();
?>
你也在
上传递论据特定类别帖子提取
<?php
$args = array( 'posts_per_page' => 5, 'offset'=> 1, 'category' => 1 );
$myposts = get_posts();
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_content(); ?></a>
<?php endforeach;
wp_reset_postdata();
?>