Wordpress查询从文章/页面中提取片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress查询从文章/页面中提取片段相关的知识,希望对你有一定的参考价值。

This simply pulls 165 characters from a page/post. Important to reset the query.
  1. <?php query_posts('pagename=about'); ?>
  2. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  3. <div><h4>Type your title here</h4>
  4. <p><?php echo substr(strip_tags($post->post_content), 0, 165); ?>... <a href="<?php bloginfo('url'); ?>/about">Read More</a></p></div>
  5. <?php endwhile; endif;
  6. //Reset Query
  7. wp_reset_query();
  8. ?>

以上是关于Wordpress查询从文章/页面中提取片段的主要内容,如果未能解决你的问题,请参考以下文章

如何创建从数据库中动态提取的静态 WordPress 页面?

在WordPress页面上嵌入另一个数据库,并使用GET方法处理数据库查询

比较有用的php代码片段

在 WordPress 页面编辑器中,如何添加 HTML 以将短代码提取的数据放在 2 列中?

如何在 Wordpress 的感谢页面上使用重力表单字段?

SQL查询以提取所有具有类别的WordPress帖子