本文整理汇总了PHP中C::get_person_gravatar_raw方法的典型用法代码示例。如果您正苦于以下问题:PHP C::get_person_gravatar_raw方法的具体用法?PHP C::get_person_gravatar_raw怎么用?PHP C::get_person_gravatar_raw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类C
的用法示例。
在下文中一共展示了C::get_person_gravatar_raw方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
return;
}
// if there are no people set (or found), skip this setup
// we leave the main loop from here temporarily
$args = array('post__in' => $who_ids, 'post_type' => array('person'));
$query = new WP_Query($args);
?>
<div class="people">
<h3>In This Episode</h3>
<div>
<?php
$no_gravatar = array();
while ($query->have_posts()) {
$query->the_post();
$person_name = get_the_title();
$person_gravatar = C::get_person_gravatar_raw();
/*
Save any Person with an empty $gravatar.
*/
if ('' == trim($person_gravatar)) {
$no_gravatar[] = $post;
continue;
}
?>
<div class="person promo">
<div class="avatar"><a href="<?php
the_permalink();
?>
"><?php
echo C::get_person_gravatar(75);
示例2:
<?php
if (is_post_type_archive('person')) {
?>
<?php
if ('' != trim(C::get_person_gravatar_raw())) {
/*
This will only display People with $gravatar images.
*/
?>
<div class="person promo">
<div class="avatar"><a href="<?php
the_permalink();
?>
"><?php
echo C::get_person_gravatar(175);
?>
</a></div>
<div class="name"><a href="<?php
the_permalink();
?>
"><?php
the_title();
?>
</a></div>
</div>