• I am currently working on my blog…setting it up and want to integrate it into my website.
    Now for proper integration, i want to change the header links currently on the blog Main page…
    https://tutorials.technix.info

    Want to change the link “home” to be of my website main page instead of the current blog main.
    Also Add a new header link called “TechBoard” linked to the blog Main Page.

    Please help me fix it as i am quite a novice at php. Thanks in Advance!

Viewing 4 replies - 1 through 4 (of 4 total)
  • When you open the header.php file – you’ll probably see a part that talks about get_pages and Home.

    To get the “new” Home tab – you’ll want to sneak in an
    <li> with a link to your main Home page immediately in front of the get_pages – and then change the word Home that was already to there to TechBoard.

    Alternately you may want to go back to the theme author and see if they can customize the template for your specific needs. Shouldn’t be a great deal of work.

    Thread Starter onlyyourspiyu

    (@onlyyourspiyu)

    Ur reply did not come up proper. Some part of it is missing..
    Can u please post it again?

    Sorry –
    <li>

    In essence, you need to hardcode a list-item into the tab scheme.

    try changing to:

    <div id="menu">
    		<ul>
    			<li><a href="https://technix.info/">Home</a></li>
    			<li><a href="https://technix.freehostia.com/wordpress/about/" title="About">About</a></li>
                            <li><a href="https://technix.freehostia.com/wordpress/guestbook/" title="GuestBook">GuestBook</a></li>
                            <li><a href="https://www.url-to-tech-board-page.com" title="TechBoard">TechBoard</a></li>
    		</ul>
    	</div>

    Yours might have soemthing that says list_pages rather then the li for about.
    If that makes sense…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Editing Headers & Adding Links!’ is closed to new replies.