rockarena666
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with themeAnd I stand corrected! There was a blank space in my functions.php file! Right befoire the opening tag <?php there was some blank space. Fixed I think and hope! 😉
Forum: Fixing WordPress
In reply to: Problems with themeI think that if it is a php error I should get a error message and the problem should also occur on my test site.
Forum: Fixing WordPress
In reply to: Showing only 3 posts on Blog PageYes, it works fine now! Thanks for the help and suggestions!
Forum: Fixing WordPress
In reply to: Showing only 3 posts on Blog PageI took this approach; For me this is the easier one right now.
[please use the http://pastebin.com/ for any further posting of codes longer than 10 lines – http://codex.wordpress.org/Forum_Welcome#Posting_Code ]
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<php the_ID(); ,>" <?php post_Class() ?>> <h2> <a href="<?php the_permalink() ?>"> <?php the_title(); ?></a> </h2> <div class="post-date"> <?php the_time('F jS, Y') ?></div> <?php the_content(); ?> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"> <?php previous_posts_link('« Newer Entries ') ?> </div> <div class="alignright"> <?php next_posts_link('Older entries »') ?> </div> </div> <?php endif; ?>I’m learning WP with this book from Packt and this seemed like an easy solution. I’m still not sure about the WP Query thing but it seems it gives you much more options?
Forum: Fixing WordPress
In reply to: Showing only 3 posts on Blog PageAh, I overlooked that! Yes, but the pagination doesn’t seem to work. Pagination doesn’t seem to work but I think I can fix that. Going to try it right now! Thanks for pointing that out! 😉