呼应任何一页的前20个单词

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了呼应任何一页的前20个单词相关的知识,希望对你有一定的参考价值。

This gets the content from the page with the ID 22 (change as appropriate on line 1) and echos the first 20 words (change word count on line 8) - can be used on any page inside your Wordpress theme.
  1. <?php
  2. $my_id = 22; // change to relevant page ID
  3. $post_id_5369 = get_post($my_id);
  4. $content = $post_id_5369->post_content;
  5. $content = apply_filters('the_content', $content);
  6. $content = str_replace(']]>', ']]>', $content);
  7. $words = explode(' ', $content);
  8. $i = 0;
  9. while ($i <= 20) {
  10. $short .= $words[$i] . ' ';
  11. $i++;
  12. }
  13. echo $short;
  14. ?>

以上是关于呼应任何一页的前20个单词的主要内容,如果未能解决你的问题,请参考以下文章

PHP中模糊查询后实现分页时,只显示第一页信息,之后的页面信息不显示,求类似问题解决方法最好有代码,谢

给定一个文档,选择一个相关的片段

Word中页码及目录的制做方法

js怎么实现点击下一页的按钮播放音效

在codeigniter中在一页上进行多个分页的最佳方法

二分查找及其Java代码实现