• Hi. I am attempting to create a simple single page (landing page) website without any navigation or menu in WordPress that I can use to direct visitors to a completely different domain/site. I can’t find anything amongst the forums that provides a clear explanation on how to do this. Do I need to edit the code in my Editor? I’m a bit of a WordPress newbie and have not really used it that much so any direction would be appreciated. The site is https://www.wrapitbyrach.info. I am currently using the “Sydney” theme, but if there is a better theme that will allow me to do this more simply am happy to change it. Thanks

    https://www.ads-software.com/plugins/navigation/

Viewing 1 replies (of 1 total)
  • Since you are new to WordPress I would suggest searching the theme directory or even consider a commercial theme. Just look for a “landing page” theme that most closely represents what you are trying to create so that you won’t need to do much customization.

    To remove the top navigation in your current theme (sydney), you would look for a line of code in header.php (lines 49-51) that looks like this

    <nav id="mainnav" class="mainnav" role="navigation">
    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'fallback_cb' => 'sydney_menu_fallback' ) ); ?>
    </nav><!-- #site-navigation -->

    and remove it.

    Hope that helps ??

Viewing 1 replies (of 1 total)
  • The topic ‘How do I create a one page (landing page) site without any navigation or menu’ is closed to new replies.