OnlyHereForHelp Posted October 27, 2014 Share Posted October 27, 2014 Hello! I have a code in WordPress <h1 class=" container single-entry-title"><?php the_title(); ?> </h1> And i want to make navigation system, every page different like that, when i open up "Training Rooms" page then i want it looks like that: <h1 class=" container single-entry-title"><?php the_title(); ?> <a href="?p=5">Page 1</a> <a href="?p=6">Page 2</a> <a href="?p=7">Page 3</a></h1> And when i open up "Studio" page then i want it looks like this: <h1 class=" container single-entry-title"><?php the_title(); ?> <a href="?p=8">Different page 1</a> <a href="?p=9">Different page 2</a> <a href="?p=10">Different page 3</a></h1> Whole code look like this: <?php /** * The Template for displaying all single posts. * * @package Fifteen */ get_header('single'); ?> <h1 class=" container single-entry-title"><?php the_title(); ?> </h1> <div id="content" class="site-content container row clearfix clear"> <div class="container col-md-12"> <div id="primary" class="content-area col-md-8"> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'single' ); ?> <?php if ( (of_get_option('next-prev-posts') != 0 ) ) { fifteen_content_nav( 'nav-below' ); } ?> <?php // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) comments_template(); ?> <?php endwhile; // end of the loop. ?> </main><!-- #main --> </div><!-- #primary --> <?php get_sidebar(); ?> <?php get_sidebar('footer'); ?> <?php get_footer(); ?> I'm noob PHP scripter please help me Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.