PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
themes
/
webon
/
inc
/
404
<?php if ( ! function_exists( 'webon_set_404_page_inner_classes' ) ) { /** * Function that return classes for the page inner div from header.php * * @param string $classes * * @return string */ function webon_set_404_page_inner_classes( $classes ) { if ( is_404() ) { $classes = 'qodef-content-full-width'; } return $classes; } add_filter( 'webon_filter_page_inner_classes', 'webon_set_404_page_inner_classes' ); } if ( ! function_exists( 'webon_get_404_page_parameters' ) ) { /** * Function that set 404 page area content parameters */ function webon_get_404_page_parameters() { $params = array( 'tagline' => esc_html__( 'Sorry, the page not found', 'webon' ), 'title' => esc_html__( 'Error Page 404', 'webon' ), 'text' => esc_html__( 'The page you are looking for doesn\'t exist. It may have been moved or removed altogether. Please try searching for some other page, or return to the website\'s homepage to find what you\'re looking for.', 'webon' ), 'button_text' => esc_html__( 'Back to home', 'webon' ), ); return apply_filters( 'webon_filter_404_page_template_params', $params ); } }
[+]
..
[+]
templates
[-] include.php
[edit]
[-] helper.php
[edit]