限制字数按字数输入内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了限制字数按字数输入内容相关的知识,希望对你有一定的参考价值。
I need this function all too often and figured I'd share it. Limit the_content() by word limit by using built in WordPress functions.
//Example: apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '…' ) ) //Add this function to your functions.php file function get_news($cat_slug, $limit){ $my_query = new WP_Query('category_name='.$cat_slug.'&posts_per_page='.$limit); $result = "<ul class='news-feed'>"; while ($my_query->have_posts()) : $my_query->the_post(); $result .= '<li class="news-item"><a href="' . get_permalink() . '" target="_blank">' . get_the_title() . '</a><p>'; $result .= apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '…' ) ) . ' <a href="' . get_permalink() . '" target="_blank" class="read_more"><strong>read more</strong> »</a>'; $result .= '</li>'; endwhile; $result .= '</ul>'; return $result; } //Usage: // get company news from the 'news' category with limit of 2 posts print get_news('news', 2);
以上是关于限制字数按字数输入内容的主要内容,如果未能解决你的问题,请参考以下文章