Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme »

Post Navigations on a custome template


 
Prev Previous Post   Next Post Next
  #1  
Old May 9, 2010, 02:56 PM
mrfroasty
 
8 posts · Jul 2009
Post Navigations on a custome template

Hello,
I am trying to use a template for a page that will display one specific category.
So I have followed the advice in previous reading here and out here as well.Copy paste index.php to something.php, and put a query to that category.Basically this is pure index.php with only 1 extra line.

But unfortunately, I see that the navigation of "next/previous" works well on single post. But "new entries" && "old entries" it always point to the same page of the template.I have been trying to resolve the issue with not much progress.Could you please advise on this one...thanks.

This doesnt happen on a default theme though

Here is my complete template:
PHP Code:
<?php
/**
 * Template Name: Matangazo Page Template
 */
?>
<?php
/* get all options: */
include (TEMPLATEPATH '/functions/bfa_get_options.php');
get_header(); ?>

<?php /* If there are any posts: */
if (have_posts()) : $bfa_ata['postcount'] == 0/* Postcount needed for option "XX first posts full posts, rest excerpts" */ ?>

    <?php /* This outputs the next/previous post or page navigation.
    This can be edited at Atahualpa Theme Options -> Style & edit the Center column */
    
bfa_center_content($bfa_ata['content_above_loop']); ?>
        
        <?php   query_posts('category_name=Matangazo'); ?>
    <?php /* The LOOP starts here. Do this for all posts: */
    
while (have_posts()) : the_post(); $bfa_ata['postcount']++; ?>

                <?php if ( !(in_category('Matangazo')) || !is_home() ) { ?>


        <?php /* Add Odd or Even post class so post containers can get alternating CSS style (optional) */
        
$odd_or_even = (($bfa_ata['postcount'] % 2) ? 'odd-post' 'even-post' ); ?>

        <?php /* This is the actual Wordpress LOOP.
        The output can be edited at Atahualpa Theme Options -> Style & edit the Center column */
        
bfa_center_content($bfa_ata['content_inside_loop']); ?>

                <?php /*ends the matangazo if*/?>


    <?php /* END of the LOOP */
    
endwhile; ?>

    <?php /* This outputs the next/previous post or page navigation and the comment template.
    This can be edited at Atahualpa Theme Options -> Style & edit the Center column */
    
bfa_center_content($bfa_ata['content_below_loop']); ?>

<?php /* END of: If there are any posts */
else : /* If there are no posts: */ ?>

<?php /* This outputs the "Not Found" content, if neither posts, pages nor attachments are available for the requested page.
This can be edited at Atahualpa Theme Options -> Style & edit the Center column */
bfa_center_content($bfa_ata['content_not_found']); ?>

<?php endif; /* END of: If there are no posts */ ?>

<?php bfa_center_content($bfa_ata['center_content_bottom']); ?>

<?php get_footer(); ?>
The link to our blog where we are using this template is here:http://www.mzalendo.net/matangazo
 

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with adding a pic to custom post template in center area frankhamm Center area post/pages 2 Mar 15, 2010 06:38 AM
Post Template ThaddeusB1 Center area post/pages 0 Jan 5, 2010 12:05 PM
google custome search code saifullahraza Plugins & Atahualpa 1 Sep 17, 2009 01:11 PM
How to turn off Atahualpa Post Options, interferes (kind of) with Post Template maccool Post-Kicker, -Byline & -Footer 1 Aug 13, 2009 09:00 AM
Creating custom post template paulae Atahualpa 3 Wordpress theme 3 Mar 18, 2009 10:36 AM


All times are GMT -6. The time now is 12:34 AM.


Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.