如何在头部打印摘录和内容?

时间:2015-10-12 13:38:33

标签: wordpress wordpress-plugin

我想创建一个简单的插件,在head部分打印内容和摘录。下面是我尝试过的但没有用的代码:

function content_excerpt() {
  if( is_single() ) {
  the_content();
  the_excerpt();
  }
}
add_action( 'wp_head', 'content_excerpt' );

1 个答案:

答案 0 :(得分:0)

请尝试以下操作: -

  function content_excerpt() {
  if( is_single() ) {
//use global $post variable
  global $post;
    echo $post->post_content; //echoing post_content
    echo $post->post_excerpt; //echoing post_excerpt
  }
}
add_action( 'wp_head', 'content_excerpt' );