我在我的自定义网站中有 wordpress 博客,我正在根据以下标签将 wordpress 博客中的一些帖子显示到我的网站中
require('../news/wp-blog-header.php');
$query = new WP_Query('tag=Dalaman');
if ($query->have_posts()):
while ($query->have_posts()) : $query->the_post();
?>
<h3> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_content();?></p>
<?php
endwhile;
endif;
the_content
显示10 posts
来自 wordpress 数据库的基于WP_Query
问题:我想显示帖子的某些部分,比如说 55 个字符的帖子,在我的数据库中excerpt
默认情况下没有,我不想使用the_exerpt()
它,因为它会去除 html 标签,并且我的帖子包含<img>
在每个帖子的开头
我尝试了很多东西但都徒劳无功,我也使用了php的substr()
功能,但在这种情况下它不起作用。
那么我怎样才能将帖子的某些部分与图像一起显示?
十分感谢。
亲切的问候 !