date ▪ “Ages” off the first page of the archive ▪ May lose relevancy over time ▪ Listed in an archive ▪ Introduced in 2005 (almost 4 years into WordPress history) ▪ Static/unchanging content ▪ Should remain relevant over time ▪ No archive available Posts Pages
site: mycoolsite.com ▪ Can refer to a static front page (a singular page) ▪ Can refer to a posts archive (latest posts) ▪ Always refers to the root of your site ▪ Code representation: is_front_page();
▪ Requires: front page set to a static page. ▪ Is an archive which pretends to be a static page, but functions only as an archive. ▪ Code representation: $posts_page = get_option( 'page_for_posts' ); $posts_page === get_the_ID();
be a singular page (Posts Page) or an archive ▪ Okay, technically it’s always an archive ▪ May be the Front Page of your site, or may be a different page entirely. is_home();