Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




is_404 [ WordPress Function ]

is_404 ( No parameters )
Uses:
  • $wp_query
See:
Returns:
  • (bool)
Defined at:

Soorgelijke functies: is_tax, is_tag, is_rtl, is_day, is_ssl


Is the query a 404 (returns no results)?

Source


<?php
function is_404() {
    global 
$wp_query;

    if ( ! isset( 
$wp_query ) ) {
        
_doing_it_wrong__FUNCTION____'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
        return 
false;
    }

    return 
$wp_query->is_404();
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics