Viewing 4 replies - 1 through 4 (of 4 total)
  • Pages are usually linked with

    <?php wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?>

    so look for that in your single.php file. You can move that above the author content, which will probably custom or an include for another file. Share this is probably hooking into a specific part of your code. Can you post the bottom half of your single.php file?

    Thread Starter ozaibi

    (@ozaibi)

    </div>

    <?php
    the_content(”);
    wp_link_pages( array( ‘before’ => ‘<p>‘ . __( ‘Pages:’, ‘themater’ ) . ‘‘, ‘after’ => ‘</p>’ ) );
    ?>

    </div><!– Post ID <?php the_ID(); ?> –>

    <?php
    if(comments_open( get_the_ID() )) {
    comments_template(”, true);
    }
    ?>

    Thread Starter ozaibi

    (@ozaibi)

    thanks for the quick reply 🙂
    i kinda understand whats the concept , but because its a custom theme , its difficult to find the correct concept.

    Thread Starter ozaibi

    (@ozaibi)

    so help me 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘change the order’ is closed to new replies.