Example #1
0
function mydesign($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    $users = get_users();
    ?>
        <li id="comment-<?php 
    echo comment_id();
    ?>
" class="compost">
             <?php 
    // ユーザーIDを引っ張る
    foreach ($users as $user) {
        //echo $user->display_name.'<br />';
        //echo get_comment_author();
        if ($user->display_name == get_comment_author()) {
            break;
        }
    }
    ?>
                <span class="trick_rounded-img icon_image" style="background: url(<?php 
    echo ps_get_user_profile_image_src($user->ID, 'standard');
    ?>
) no-repeat center center; width: 50px; height: 50px;></span>
				<span class="trick_thumbnail_Image">
					<?php 
    ps_user_profile_image($user->ID, 'thumbnail');
    ?>
				</span>
                <?php 
    ?>
            <div class="commentarea">
            	<?php 
    //改行表示
    $commentstr = '<p>' . get_comment_text() . '</p>';
    $commentstr = preg_replace("/\n/", "<br />", $commentstr);
    echo $commentstr;
    //comment_text();
    ?>
            
            </div>
            
            <p class="cominfo">
                <?php 
    comment_date();
    ?>
                <?php 
    comment_time();
    ?>
                |
                <?php 
    comment_author_link();
    ?>
                <?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'reply_text' => '返信', 'before' => ' | ', 'after' => '')));
    ?>
            </p> 
        </li>

<?php 
}
Example #2
0
<?php

/********************************
	シングル(post)テンプレート
********************************/
// 投稿データがあるか調べる
if (have_posts()) {
    // あった場合グローバル$postからthe_postでこのpostに指定される?←ココ謎
    the_post();
    ?>
	<div class="postTitle">
    <span class="trick_rounded-img post_authorimage" style="background: url(<?php 
    echo ps_get_user_profile_image_src(get_the_author_meta('ID'), 'standard');
    ?>
) no-repeat center center; width: 60px; height: 60px;></span>
            <span class="trick_thumbnail_Image">
                <?php 
    ps_user_profile_image($post->post_author, 'standard');
    ?>
            </span>
        <h2><?php 
    the_title();
    ?>
</h2>     
	</div>

	<!-- メイン記事部分 -->
	<div class="post">
		<?php 
    //echo 'コンテンツ表示<br />';
    the_content();
Example #3
0
            $users_rank[$j - 1] = $t;
        }
    }
}
?>
<!-- odai_gallery_List -->
<div id="odai_rank_gallery">
	<h2>御題ランキング</h2>
	<ul id="odai_rank">
    	<?php 
for ($i = 0; $i < $max; ++$i) {
    $value = $users_rank[$i];
    ?>
        	<li>
            	<span class="trick_rounded-img" style="background: url(<?php 
    echo ps_get_user_profile_image_src($value->keys, 'thumbnail');
    ?>
) no-repeat center center; width: 50px; height: 50px;
				<?php 
    switch ($i) {
        case 0:
            echo 'border-color:#0F6;';
            break;
        case 1:
            echo 'border-color:yellow;';
            break;
        case 2:
            echo 'border-color:red";';
            break;
        default:
            break;
Example #4
0
}
$users = get_users(array('role' => 'Editor'));
foreach ($users as $user) {
    if ($onlyID == 0 || $user->ID == $onlyID) {
        ?>
        <div class="new_gallery_authorbox">            
            <p class="authorName"><a href="<?php 
        echo get_home_url() . '/gallery?user='******'big');
        ?>
</span>
            </span>
           
<div class="authorImages">
      <?php 
        $posts = query_posts('posts_per_page=-1&offset=0&post_type=attachment&post_status=inherit&author=' . $user->ID);
        if (empty($posts)) {
            echo '<p class="notimage">投稿がありません</p>';
        } else {
            foreach ($posts as $post) {