aliceabc
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Tiles] How I add a pagination on plugin? It is possible?Hi Mike, thanks for one more time 🙂
I tryed add this code, but the pagination doesn’t showed up again, I installed the plugin “pagenavi” for pagination … Do you think that need specify the number of post and the template I’m using?I don’t know why it’s not working 🙁
I put this code:
<?php
global $query_string; parse_str( $query_string, $my_query_array );
$paged = ( isset( $my_query_array[‘paged’] ) && !empty( $my_query_array[‘paged’] ) ) ? $my_query_array[‘paged’] : 1; query_posts(“numposts=4&paged=$paged”);
?>
<?php query_posts(“cat=&paged=$paged”); if (have_posts()) : ?>
<?php if ( function_exists ( ‘the_loop_wp_tiles’ ) ) : ?>
<?php the_loop_wp_tiles(); ?>
<?php endif; ?>
<?php wp_pagenavi(); ?>
<?php endif; ?>Forum: Plugins
In reply to: [WP Tiles] How I add a pagination on plugin? It is possible?Hi Mike ! thanks for answer, I tryed everything and i still can’t do it ! I need to put a numeric pagination on post tiles. Please can you help-me?
For my project finish I just need do it works ! Thanks one more timeMy code is :
<?php query_posts(“cat=&paged=$paged”); if (have_posts()) : ?>
<?php if ( function_exists ( ‘the_loop_wp_tiles’ ) ) : the_loop_wp_tiles(); endif; ?>
<?php else : ?>
<?php getpagenavi(); ?>
<?php endif; ?>Forum: Plugins
In reply to: [WP Tiles] How add a category class on posts?Thanks a lot Mike 🙂
Forum: Plugins
In reply to: [WP Tiles] Color by post categoryHow I put the class on each post ? thanks