dennisv1982
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: How can i add a post from a specific categorie on my site?fixed it myself:
if other people need it, here ya go:<div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : ?> <?php query_posts('category_name=nieuws&showposts=10'); ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content('Lees Verder... »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?><?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('Geen Reacties »', '1 Reactie »', '% Reacties »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Eerdere Berichten') ?></div> <div class="alignright"><?php previous_posts_link('Nieuwe Berichten »') ?></div> </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 get_search_form(); ?> <?php endif; ?> </div>Forum: Themes and Templates
In reply to: Help On Theme – The Gazette Editioni am not getting an answer on the wootheme site, hope you can help me?
under gazette options, under featured category, i am unable to choose any… i made/have 2 categories but there are not listed…
whats up with this?? :-/
Forum: Fixing WordPress
In reply to: how to remove txt above categoriesyeah i did, it isnt there 🙂
but i solved it using this string:
<?php wp_list_cats(); ?>its gone now, lol 🙂
Viewing 3 replies - 1 through 3 (of 3 total)