mojohn
Forum Replies Created
-
Hi disregard my last post my bad, i mean png is not working properly it has a black background
Hi
put those codes still not working..what is development version?
Forum: Fixing WordPress
In reply to: Pages are dead ending…why?I also have a thesame problem..
i use wp-paginate plugin
<?php $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(‘category_name=Homepage Models&posts_per_page=4&paged=’ . $paged); if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h2 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<div class=”postdate”><img src=”<?php bloginfo(‘template_url’); ?>/images/date.png” /> <?php the_time(‘F jS, Y’) ?> <img src=”<?php bloginfo(‘template_url’); ?>/images/user.png” /> <?php the_author() ?> <?php if (current_user_can(‘edit_post’, $post->ID)) { ?> <img src=”<?php bloginfo(‘template_url’); ?>/images/edit.png” /> <?php edit_post_link(‘Edit’, ”, ”); } ?></div><div class=”entry”>
<?php the_content(”); ?>
<div class=”readmorecontent”>
” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”>Click for Gallery »
</div>
</div>
</div><!–/post-<?php the_ID(); ?>–><?php endwhile; ?>
<div class=”navigation”>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } else { ?>
<div class=”alignright”></div>
<div class=”alignleft”><?php if(function_exists(‘wp_paginate’)) {
wp_paginate();
} ?>
</div>
can you help me with this?Forum: Fixing WordPress
In reply to: pagination problem!It’ works! thanks a lot dude ^^