我有个问题。
是的<?php the_excerpt(); ?>
从古腾堡清空<?php the_excerpt(); ?>
从帖子中提取一小部分内容,但先下一步<?php the_permalink(); ?>
下是断开的,并更改了从单个博客到博客帖子列表根目录的路径。
如何解决这个问题?
E、 回路g:
<?php
$paged = ( get_query_var( \'paged\' ) ) ? get_query_var( \'paged\' ) : 1;
$args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => 5,
\'paged\' => $paged
);
$post_query = new WP_Query($args);
if($post_query->have_posts() ) {
while($post_query->have_posts() ) {
$post_query->the_post();
$featured_img_url = get_the_post_thumbnail_url(get_the_ID(),\'blog-thumb\');
?>
<div class="blog-item">
<?php if($featured_img_url) { ?>
<a href="<?php the_permalink(); ?>"><img src="<?php echo $featured_img_url; ?>" class="blog-thumb" id="img" alt=""></a>
<?php } ?>
<a href="<?php the_permalink(); ?>">
<h2 class="blog-title"><?php the_title(); ?></h2>
</a>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?> // broken link return to url.com/blog not url.com/single-blog-url" class="blog-btn">Read more</a>
</div>
<?php
}
}
?>