如何从WordPress帖子内容中只获取文本?

时间:2011-05-23 作者:user478

我一直在用wordpress做我的项目。对于我的网站主页,我需要显示来自帖子内容的有限文本,内容也包含图像。为了显示100个文本,我使用了php的substr函数。这里发生的是文本和图像都被显示。我只想显示文本。有什么方法或插件可以做到这一点吗?

非常感谢您的帮助。提前感谢

2 个回复
SO网友:Satish Gandham

使用strip\\u标记+substr

substr( strip_tags( get_the_excerpt() ),0,235);

SO网友:Astiam

如果在循环中,则使用wp\\u trim\\u extract()函数,该函数将返回55个单词的摘录。

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
     // Your HTML code...
     <p><?php echo wp_trim_excerpt(); ?></p>
     // Go on with more HTML (if you want to)
<?php endwhile; endif; ?>
否则,如果不在循环中,请尝试使用从编辑后屏幕设置的摘录字段。

结束

相关推荐

Resizing images failing

我最近添加了三种新尺寸的post\\u缩略图的主题支持,我想调整之前上传的所有旧图像的大小。我自己写的剧本如下:function resizeImages() { require ( ABSPATH . \'wp-admin/includes/image.php\' ); global $wpdb; $images = $wpdb->get_results( \"SELECT ID FROM $wpdb->posts