限制WordPress摘录

Posted

tags:

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

Thanks to LenK on the WP forums.
  1. remove_filter('get_the_excerpt', 'wp_trim_excerpt');
  2. add_filter('get_the_excerpt', 'custom_trim_excerpt');
  3.  
  4. function custom_trim_excerpt($text) { // Fakes an excerpt if needed
  5. global $post;
  6. if ( '' == $text ) {
  7. $text = get_the_content('');
  8. $text = apply_filters('the_content', $text);
  9. $text = str_replace(']]>', ']]>', $text);
  10. $text = strip_tags($text);
  11. $excerpt_length = x;
  12. $words = explode(' ', $text, $excerpt_length + 1);
  13. if (count($words) > $excerpt_length) {
  14. array_pop($words);
  15. array_push($words, '...');
  16. $text = implode(' ', $words);
  17. }
  18. }
  19. return $text;
  20. }

以上是关于限制WordPress摘录的主要内容,如果未能解决你的问题,请参考以下文章

限制WordPress摘录

Wordpress摘录自定义字数限制

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

限制摘录™s字数

php 从摘录中删除短代码(WordPress)

Wordpress:仅适用于 Woocommerce 品牌页面的摘录