?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/r/a/n/rankinh/villavanille/wp-content/themes/villa-vanille/inc/404/
Upload File :
Current File : /home/r/a/n/rankinh/villavanille/wp-content/themes/villa-vanille/inc/404/helper.php

<?php

if ( ! function_exists( 'drew_set_404_page_inner_classes' ) ) {
	/**
	 * Function that return classes for the page inner div from header.php
	 *
	 * @param string $classes
	 *
	 * @return string
	 */
	function drew_set_404_page_inner_classes( $classes ) {

		if ( is_404() ) {
			$classes = 'qodef-content-full-width';
		}

		return $classes;
	}

	add_filter( 'drew_filter_page_inner_classes', 'drew_set_404_page_inner_classes' );
}

if ( ! function_exists( 'drew_get_404_page_parameters' ) ) {
	/**
	 * Function that set 404 page area content parameters
	 */
	function drew_get_404_page_parameters() {

		$params = array(
			'title'       => esc_html__( 'Error Page', 'drew' ),
			'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.', 'drew' ),
			'button_text' => esc_html__( 'Back to home', 'drew' ),
		);

		return apply_filters( 'drew_filter_404_page_template_params', $params );
	}
}