-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.php
68 lines (63 loc) · 3.61 KB
/
author.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php get_header(); ?>
<?php
//can call curauth->get description and shit
if (isset($_GET['author_name'])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?>
<div id="container">
<div id="main">
<div id="posts">
<div id="PageTitleBox"><div id="PageTitle">Uploads by <?php echo $curauth->nickname ?></div></div>
<div id="postslist">
<?php $yo = $curauth->ID; query_posts('author=' . $yo .'&paged=' . get_query_var('paged'));?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="singlepost">
<div id="posttitle">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<div id="postcontent">
<a href="<?php the_permalink(); ?>"><?php the_content(); ?></a>
</div>
<div id="postdata">
<div id="stats"><a id=<?php echo '"score ' . get_the_ID() . '"'; ?>><?php $scored=get_post_meta(get_the_ID(),'postscore',true);if($scored==""){echo 0;}else{echo $scored;} ?></a> points - <?php comments_number( 'No comments', 'One comment', '% comments' ); ?>
<div id="tags"> <?php the_tags( 'Tags: ', ', ', '' ); ?> </div>
</div>
<div class="vote">
<?php if (is_user_logged_in()) {
$theId = get_the_ID();
$hasivote = checkvote($theId);
if ($hasivote == 1) {
echo "<li><a id='upvoteicon {$theId}' class='voteupactive' href='javascript:void(0);' onclick='vote({$theId}, 0);'></a></li>";
} else {
echo "<li><a id='upvoteicon {$theId}' class='voteup' href='javascript:void(0);'onclick='vote({$theId}, 1);'></a></li>";
}
if ($hasivote == 0) {
echo "<li><a id='downvoteicon {$theId}' class='votedownactive' href='javascript:void(0);' onclick='vote({$theId}, 0);'></a></li>";
} else {
echo "<li><a id='downvoteicon {$theId}' class='votedown' href='javascript:void(0);' onclick='vote({$theId}, 2);'></a></li>";
}
} else { ?>
<li><a id=<?php echo '"upvoteicon ' . get_the_ID() . '" '; ?>class="voteup" href="javascript:void(0);" onclick="jQuery('#show_login').click();"></a></li>
<li><a id=<?php echo '"downvoteicon ' . get_the_ID() . '" '; ?>class="votedown" href="javascript:void(0);" onclick="jQuery('#show_login').click();"></a></li>
<?php } ?>
</div>
</div>
</div>
<?php endwhile; else: ?>
<?php _e('It seems there are no posts here.'); ?></p>
<?php endif; ?>
</div>
<div id="Paging">
<div id="NewerPages"><?php previous_posts_link('« Newer Posts') ?></div>
<div id="OlderPages"><?php next_posts_link('Older Posts »') ?></div>
</div>
</div>
<div id="sidebar-container">
<div id="sidebar-dummy"></div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>