• My site is https://www.blogseye20.com

    where it says social network I want it to link to https://www.blogseye20.com/socnet

    I have searched the forum and I am not sure what topic to search for to walk me through getting the page at the top to link to my actual social network.

    I don’t want it to be on the link on the blog roll… I really want it on the top bar next to home and about me. Can someone please help or point me in the right direction?!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I did that on the following site by hardcoding in the links.

    https://www.georgetownprofessor.net/teaching/

    You should see something similar in your theme…probably header.php where the home link is created followed by the code to list the pages. You could remove the code that list pages and add hard-coded links…or you could leave the code that lists pages and add hard-coded links if you want both.

    If you would like to zip your theme and upload it somewhere so I can download it, then I would be happy to change the code for you…I can’t tell you exactlyhow to do it without access to the files (maybe someone else can), but the following code should help you figure it out.

    <div id="menu">
    <ul>
    <li <?php if(is_home()){echo 'class="first current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>/" title="Home">Home</a></li>
    <li class="page_item <?php echo $pg_li; ?>"><a href="../podblog"><?php _e('My Podblog'); ?></a></li>
    <li class="page_item <?php echo $pg_li; ?>"><a href="../photoblog"><?php _e('My Photoblog'); ?></a></li>
    <li class="page_item <?php echo $pg_li; ?>"><a href="https://kentuckyclassroom.org"><?php _e('Free KY Teacher Blogs'); ?></a></li>
    </ul>
    </div>
    Thread Starter KittyBradshaw

    (@kittybradshaw)

    *sighs* I can’t find that in the header. I can’t believe it is this hard to to just link to another page on WP (other then the BlogRoll)

    If you would like to zip your theme and upload it somewhere so I can download it, I’ll take a look and see if I can fix it for you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Directing pages to another location….’ is closed to new replies.