Forums
(@timduncan)
14 years ago
on line 11 of course, just give it a span class or something to style it.
ah yes, sorry, it’s a plugin for the pagination nav. you want to avoid plugins?
you go to menus in dashboard and add to your current nav menu a custom link ??
if still not working, try adding after ending the loop
[Code moderated as per the Forum Rules. Please use the pastebin]
and if you want to change order, just switch F with j F=month
<?php the_time(‘F j, Y’); ?>
or
<?php the_date(‘F j, Y’); ?>
or this:
<?php the_time(‘d.m.y’) ?>
<?php the_time(‘m/j/y’) ?>
add this before your title, inside the loop. you also might want to add some span or something to style it.
any results?
<?php $cat = 'noticias'; $category=get_category($cat); ?> <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts( array('cat' => 9, 'paged'=>$page, 'showposts'=>4) ); while (have_posts()) : the_post(); ?>
hope this helps
i don’t quite understand, maybe you have an example? i have just done today some paginating with categories, maybe it is what are you looking for.
do you need a 1 2 3 4 pagination?
i am looking for the same thing
14 years, 1 month ago
maybe copy here the code?