PHP 通过单词限制WordPress the_content

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 通过单词限制WordPress the_content相关的知识,希望对你有一定的参考价值。

//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);

以上是关于PHP 通过单词限制WordPress the_content的主要内容,如果未能解决你的问题,请参考以下文章

php [摘录限制] Poner un limite al extracto en wordpress #wordpress #php

WordPress安全 - 隐藏保护wp-login.php后台登陆入口

php 摘录限制长度和更多wordpress

php 更改Wordpress文件上载大小限制

php 增加WordPress内存限制

PHP 限制WordPress摘录