You appear to be a bot. Output may be restricted
Description
Return the entry title
Usage
$updated = oiksc_404_handler::entry_title( $text );
Parameters
- $text
- ( string ) required –
Returns
updated entry titleSource
File name: oik-shortcodes/classes/class-oiksc-404-handler.phpLines:
1 to 8 of 8
function entry_title( $text ) { if ( $this->get_post_type_object() ) { $text = $this->post_type_object->labels->not_found; $text .= ": "; $text .= esc_html( $this->get_name() ); } return( $text ); }View on GitHub