• My website, bigshootout.com, is built in WordPress on a template that puts the pages of your site across the top in a row of navigation tabs – each page has its own tab. However, the home page of my site is a series of posts, not a page, but I want that to have a “home” tab so people can easily get back to it. How?

Viewing 3 replies - 1 through 3 (of 3 total)
  • What template tag is being used to generate the menu in header.php – wp_page_menu or wp_list_pages?

    Thread Starter gfrancisco51

    (@gfrancisco51)

    appears to be wp_page_menu:

    </head><body>
    
    		<div class="main"><div class="main-width">
    
    		<div class="header">
    
    			<div class="main-menu"><div class="bgr01"><div class="bgr02">
    				<?php
    					wp_page_menu('show_home=0&sort_column=menu_order, post_title&link_before=<span><span>&link_after=</span></span>');
    				?>

    [Please post code snippets between backticks or use the code button.]

    wp_page_menu('show_home=1&sort_column=menu_order, post_title&link_before=<span><span>&link_after=</span></span>');

    https://codex.www.ads-software.com/Function_Reference/wp_page_menu

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make posts my home page’ is closed to new replies.