https://www.geeksforgeeks.org/how-to-design-a-simple-calendar-using-javascript/

chevron_left chevron_right
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
    update breadcrumbs to be dynamic, pull in title as last node
    Search options: separate word search diacritics

    pages

    //  Wordpress comes with 7 primary template page types, which can be determined on this way
    if ( is_main_query() ) {
        // Error
        if ( is_404() ) {
            ;
        }
        // Front page
        if ( is_front_page() ) {
            ;
        }
        // Archive
        if ( is_archive() ) {
            ;
        }
        // Comments popup
        if ( is_comments_popup() ) {
            ;
        }
        // Search
        if ( is_search() ) {
            ;
        }
        // Singular
        if ( is_singular() ) {
            ;
        }
        // Home - the blog page
        if ( is_home() ) {
            ;
        }
    }
    //  is_home tells to you, that you have the blog page.