RagnaRock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To list Top Authors of the monthok… I almost nailed it.
I got this code in my index.php (inside my theme folder) http://pastebin.com/138SKAh0
the thing that is not working, is the user_url, for some reason it comes empty… any ideas?
Forum: Installing WordPress
In reply to: Warning: Cannot modify header informationthis happened to me with the portuguese instalation files, downloadaded the english one and the problem is gone
Forum: Fixing WordPress
In reply to: Trouble Restoring WordPressanyone?
Forum: Fixing WordPress
In reply to: Trouble Restoring WordPressI also want to do the same thing…i’m changing host, and i want to tranfer everything to be just like in the old host.
i’ve copied the databases…and now what?
Forum: Fixing WordPress
In reply to: “Next Page »” button not working as expectedSolved by using the options in wp-admin instead of the code
😀 tksForum: Fixing WordPress
In reply to: “Next Page »” button not working as expectedwell i got more posts now…removing that line solves the problem..but wordpress shows 10 posts by default and i want to show a multiple of 4 like 12 or 16… how can i do this(withouth messing with the next page button)?
Forum: Fixing WordPress
In reply to: “Next Page »” button not working as expectedsince i only have 9 posts…that would not help me… i can not test this problem without that line of code
Forum: Fixing WordPress
In reply to: “Next Page »” button not working as expectedsorry about that, ive posted the code here http://wordpress.pastebin.ca/1545123
dont know how to edit my previous post though :s
Forum: Fixing WordPress
In reply to: “Next Page »” button not working as expectedthe entire code of my index.php is this onde
<?php get_header(); ?> <?php $count = 0;?> <?php query_posts('showposts=8'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="onequartercolumn2"> <?php the_excerpt();?> <a href="<?php the_permalink() ?>"><table cellpadding="0" cellspacing="5" border="0" background="http://www.jogosbaratos.info/wp-content/themes/jogosBaratos/images/comment.png" alt="Comentar/ver comentarios" width="48" height="39"> <tr><td align="center" valign="top"> <p class="commentnum"> <?php comments_number('0', '1', '%'); ?> </p> </td></tr> </table></a> </div> <?php if($count == 3 ) { echo "<div style='clear:both;'></div>";} $count = $count+1; ?> <?php endwhile; ?> <div id="next"><?php next_posts_link(); ?> <?php previous_posts_link(); ?> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> <div style='clear:both;'></div> <div id="wrapper13"> <div class="onethirdcolumn"> <h5>Recent Posts</h5> <ul> <?php get_archives('postbypost',5); ?> </ul> </div> <div class="onethirdcolumn"> <h5>Recent Comments</h5> <ul> <?php include (TEMPLATEPATH . '/simple_recent_comments.php');?> <?php if (function_exists('src_simple_recent_comments')) { src_simple_recent_comments(5, 60, '', ''); } ?> </ul> </div> <div class="onethirdcolumn"> <h5>Top Categories</h5> <ul> <?php wp_list_cats(); ?> </ul> </div> <div style='clear:both;'></div> </div> </div> <?php get_footer(); ?> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-10333069-1"); pageTracker._trackPageview(); } catch(err) {}</script> </body> </html>hope it helps :S