Why does my site show the correct front-page when you arrive at the site, but not when you click ‘home’?

Welcome to stackexchange. When asking a question please try to be as specific in your question as possible. Try describing what you want to know – also using screenshots or wireframes is ok – but please avoid forcing others to ckick on a link to understand your question. Questions like “How can I do this?” … Read more

Excluding front_page from is page condition

if ( !(is_page() || is_front_page()) ) { /* These features will not be visible on front page and on single pages. */ } If you want to hide something only on the front page regardless the front page is a static page or list of blog posts then use this code:- if ( !(is_front_page()) ) … Read more

What code controls the animation for the front-page header in TwentySeventeen

Looks to be global.js, in the adjustHeaderHeight() function at lines 92 – 97 // The margin should be applied to different elements on front-page or home vs interior pages. if ( isFrontPage ) { $branding.css( ‘margin-bottom’, navigationOuterHeight ); } else { $customHeader.css( ‘margin-bottom’, navigationOuterHeight ); } It sets the margin-bottom to the equivalent of the … Read more

Front Page Settings

I am not sure why you need pages over posts here. Using posts gives you ready made index home page, slugs and pretty permalinks give you link structure you want. You can just add some blurb on home page that says “bookmark this puzzle” with direct permalink.

NON Static-Front Page

Note that when in context of WordPress “static” front page does not meant static literally. Usually it means page with certain content that stays same, as opposed to index/archive pages primarily filled with multiple posts that move with time. So whatever dynamic functionality can be added to appropriate template being used for “static” front page … Read more

How to set a static html front page

Temporarily change permalinks back to the default settings. Create a page template and name it page_home.php. Add this to the file: <?php // Template name: Static Front Page You can add code to display the page content later. Like the contents of the index.php file. Save the file to your theme (or child theme) directory. … Read more