本文整理匯總了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);
}
示例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;
}
示例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);
}
}
示例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 '';
}