當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。