当前位置: 首页>>代码示例>>PHP>>正文


PHP WPSEO_Taxonomy_Meta::get_meta_without_term方法代码示例

本文整理汇总了PHP中WPSEO_Taxonomy_Meta::get_meta_without_term方法的典型用法代码示例。如果您正苦于以下问题:PHP WPSEO_Taxonomy_Meta::get_meta_without_term方法的具体用法?PHP WPSEO_Taxonomy_Meta::get_meta_without_term怎么用?PHP WPSEO_Taxonomy_Meta::get_meta_without_term使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WPSEO_Taxonomy_Meta的用法示例。


在下文中一共展示了WPSEO_Taxonomy_Meta::get_meta_without_term方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: wpseo_tax_adminbar_content_score

/**
 * Returns the Content score element for the adminbar.
 *
 * @return string
 */
function wpseo_tax_adminbar_content_score()
{
    $rating = 0;
    if (is_tax() || is_category() || is_tag()) {
        $rating = WPSEO_Taxonomy_Meta::get_meta_without_term('content_score');
    }
    return wpseo_adminbar_score($rating);
}
开发者ID:jesusmarket,项目名称:jesusmarket,代码行数:13,代码来源:wpseo-non-ajax-functions.php

示例2: taxonomy_image_output

 /**
  * @return bool
  */
 private function taxonomy_image_output()
 {
     foreach (array('twitter-image', 'opengraph-image') as $tag) {
         $img = WPSEO_Taxonomy_Meta::get_meta_without_term($tag);
         if ($img !== '') {
             $this->image_output($img);
             return true;
         }
     }
     return false;
 }
开发者ID:Garth619,项目名称:Femi9,代码行数:14,代码来源:class-twitter.php

示例3: get_opengraph_image_taxonomy

 /**
  * Check if taxonomy has an image and add this image
  */
 private function get_opengraph_image_taxonomy()
 {
     if (($ogimg = WPSEO_Taxonomy_Meta::get_meta_without_term('opengraph-image')) !== '') {
         $this->add_image($ogimg);
     }
 }
开发者ID:yoast,项目名称:wordpress-seo,代码行数:9,代码来源:class-opengraph.php

示例4: get_meta_value

 /**
  * Returns the meta value for the given $meta_key.
  *
  * @param string $meta_key The target key that will be fetched.
  *
  * @return string
  */
 private function get_meta_value($meta_key)
 {
     if (is_singular()) {
         return WPSEO_Meta::get_value($meta_key);
     }
     if (is_category() || is_tag() || is_tax()) {
         return WPSEO_Taxonomy_Meta::get_meta_without_term($meta_key);
     }
     return '';
 }
开发者ID:Didox,项目名称:beminfinito,代码行数:17,代码来源:class-googleplus.php


注:本文中的WPSEO_Taxonomy_Meta::get_meta_without_term方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。