當前位置: 首頁>>代碼示例>>PHP>>正文


PHP C::get_person_gravatar_raw方法代碼示例

本文整理匯總了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);
開發者ID:ryanmr,項目名稱:convergence-theme,代碼行數:31,代碼來源:episode-people.php

示例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>
		
開發者ID:ryanmr,項目名稱:convergence-theme,代碼行數:30,代碼來源:loop-archive.php


注:本文中的C::get_person_gravatar_raw方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。