I have just migrated my blogs from Drupal after years of persevering trying to make my blogs busy to no avail
my question is how do i add social bookmarks(like mashable) to posts in the freshlife them
thanks
]]>I want to customized my topNav like engadget.com navBar which has black background and search area and some buttons I need same as like they has and need to add some followers link like they had in footer navBar can someone help me with this thing!
Thanking you in advanced if any information required let me know please!
]]>I want to customize my full theme but just now I want to edit my header and footer into full width and the content should be displayed in the wrapper mean in the center!
Thanking you guys!
Ibadullah
I have extracted these code as below and you might help what should be change to show the last 30 days popular post.
// Tabber: Get Most Popular Posts
function tj_tabs_popular( $posts = 5, $size = 35 ) {
$popular = new WP_Query('orderby=comment_count&posts_per_page='.$posts);
while ($popular->have_posts()) : $popular->the_post();
?>
<li>
<?php tj_show_thumb($size, $size); ?>
<div class="info">
<a>" href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<span class="meta"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments', 'comments-link', ''); ?></span>
</div> <!--end .info-->
<div class="clear"></div>
</li>
<?php endwhile;
}
Thanks
]]>