OwlCyberSecurity - MANAGER
Edit File: 404.php
<?php /** * @Packge : Edura * @Version : 1.0 * @Author : Themeholy * @Author URI : https://www.themeholy.com/ * */ // Block direct access if( !defined( 'ABSPATH' ) ){ exit(); } if( class_exists( 'ReduxFramework' ) ) { $edura404title = edura_opt( 'edura_fof_title' ); $edura404description = edura_opt( 'edura_fof_description' ); $edura404bg = edura_opt( 'edura_for_img','url' ); $edura404btntext = edura_opt( 'edura_fof_btn_text' ); } else { $edura404title = __( 'Ooops Page Not Found', 'edura' ); $edura404description = __( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'edura' ); $edura404bg = ''.EDURA_DIR_ASSIST_URI.'img/error.svg'; $edura404btntext = __( ' Back To Home', 'edura'); } // get header get_header(); echo '<div class="">'; echo '<div class="container">'; echo '<div class="error-page">'; echo '<div class="error-content">'; echo '<div class="error-img">'; echo edura_img_tag( array( 'url' => esc_url($edura404bg), ) ); echo '</div>'; echo '<h2 class="error-title">'.wp_kses_post( $edura404title ).'</h3>'; echo '<p class="error-text">'.esc_html( $edura404description ).'</p>'; echo '<a href="'.esc_url( home_url('/') ).'" class="th-btn">'.esc_html( $edura404btntext ).'</a>'; echo '</div>'; echo '</div>'; echo '</div>'; echo '</div>'; //footer get_footer();