Skip to content

Instantly share code, notes, and snippets.

@KnowTheCodePro
Created April 19, 2016 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KnowTheCodePro/7136c7b4c1611a3cd598ada1510a5887 to your computer and use it in GitHub Desktop.
Save KnowTheCodePro/7136c7b4c1611a3cd598ada1510a5887 to your computer and use it in GitHub Desktop.
is_front_page() vs. is_home()
<?php
namespace KnowTheCode;
add_action( 'wp_head', __NAMESPACE__ . '\check_whether_front_page_or_home' );
function check_whether_front_page_or_home() {
d( is_front_page() );
d( is_home() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment