dudskie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to fix this formatting of text and imagePlease help…
Forum: Fixing WordPress
In reply to: Previous and NextSomebody help.. Nobody answers me.
Forum: Fixing WordPress
In reply to: Previous and NextPlease help…
Forum: Fixing WordPress
In reply to: Create a queryI mean the second four will show if I click Next, then when I click Previous it will go to the previous post. Sorry for misunderstanding. 🙂
Forum: Fixing WordPress
In reply to: Create a queryThat’s the last problem 🙂
Forum: Fixing WordPress
In reply to: Create a queryThanks tsguitar.. It really works… I learned a lot of this template tags.
Now, I have another question. This is in connection with the problem above. The template tags above shows I have 25 titles with dates. Now, I want to display only 4 titles with dates then there is an option that click here for the next four titles with dates. How will I do that?
This should fixed my problem.
Thanks
Forum: Fixing WordPress
In reply to: Create a queryOne last question, I am not sure where is that current Loop located? Is that a file you mentioned (wp-blog-header.php)? I am not sure where to put the code below. Thanks and sorry, this is my first to used WordPress.
<?php query_posts('cat=4'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="permalink to <?php the_title(); ?>"><?php the_title(); ?></a></p> <p><?php the_time('d, M, Y') ?></p> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>Forum: Fixing WordPress
In reply to: Create a queryPlease help. Thanks.
Forum: Fixing WordPress
In reply to: Create a queryThank you very much. It is a great help. One thing question is. Is this should work in my website homepage? Actually my blogs are located in http://www.mydomain.com/blogs. And I want to display this information to http://www.mydomain.com only. Is there any code that I have to call to the blogs folder? Thanks in advance.
Forum: Fixing WordPress
In reply to: Create a queryYes, I want to create a code that will display all the value 4 of cat_id in the wp_categories table and I want to post only the TITLE and DATE only on my homepage. How to do that?