最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Error when adding excerpt to the content through functions.php

programmeradmin1浏览0评论

I am trying to add the excerpt from a specific post to the content.

function add_2_the_content( $content ) {
  if (is_front_page()){
      $custom_content = get_the_excerpt('some_id_number');
  }
  $custom_content .= $content;
return $custom_content;
}

add_filter( 'the_content', 'add_2_the_content' );

But when I do this I get an error.

Fatal error: Uncaught Error: Maximum function nesting level of '256' reached, aborting!

I have searched for this error but have not found an answer that would explain why it is not working with get_the_excerpt.

发布评论

评论列表(0)

  1. 暂无评论