呼应任何一页的前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.
<?php $my_id = 22; // change to relevant page ID $post_id_5369 = get_post($my_id); $content = $post_id_5369->post_content; $content = apply_filters('the_content', $content); $i = 0; while ($i <= 20) { $short .= $words[$i] . ' '; $i++; } echo $short; ?>
以上是关于呼应任何一页的前20个单词的主要内容,如果未能解决你的问题,请参考以下文章