本文整理汇总了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 '';
}