wordpress优化如何获取分类描述信息(term_description)

2024年10月16日 建站教程

wordpress建站seo优化的时候会用到描述,下面web建站小编给大家简单介绍一下如何利用wordpress自带的term_description函数获取分类描述信息!

函数源码:

function term_description( $term = 0, $deprecated = null ) {
  if ( ! $term && ( is_tax() || is_tag() || is_category() ) ) {
  	$term = get_queried_object();
  	if ( $term ) {
  	  $term = $term->term_id;
  	}
  }
  
  $description = get_term_field( 'description', $term );
  
  return is_wp_error( $description ) ? '' : $description;
}

调用方法:

<?php echo 'Term Description: ' . term_description( '12','post_tag' ); ?>

本文链接:http://so.lmcjl.com/news/15516/

展开阅读全文