zZzzZ.
home2
/
zrzvbdry
/
wiredsave.com
/
wp-content
/
themes
/
savings-pro-main
New Folder
Editing: 404.php
Save
Cancel
<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package WP Coupon */ get_header(); /** * Hooks wpcoupon_after_header * * @see wpcoupon_page_header(); * */ $layout = wpcoupon_get_site_layout(); ?> <div id="content-wrap" class="container no-sidebar"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <div class="content-404 widget-area"> <div class="txt-center clearfix" style="margin: 50px 0;"> <h1 class="page-title"><?php esc_attr_e(wpcoupon_get_option('error_header_title', false, '')); ?></h1> <p class="f-18 strong"><?php esc_attr_e(wpcoupon_get_option('error_sub_header_title', false, '')); ?></p> <?php $helper_btn= wpcoupon_get_option('helper_btn', false, '');?> <?php if($helper_btn == 'on'){ ?> <div class="flexbox w-75-md w-50-lg center-block"> <a href="<?php echo esc_url(wpcoupon_get_option('home_btn_link', false, '')); ?>" class="btn blue m-l-1 m-r-1 w-100"> <span class="btn-text"><?php esc_attr_e(wpcoupon_get_option('home_btn_lebel', false, '')); ?></span> </a> <a href="<?php echo esc_url(wpcoupon_get_option('support_btn_link', false, '')); ?>" class="btn blue m-l-1 m-r-1 w-100"> <span class="btn-text"><?php esc_attr_e(wpcoupon_get_option('support_btn_lebel', false, '')); ?></span> </a> </div> <?php }?> </div> <?php /*the_widget( 'WPCoupon_Popular_Store', array( 'title'=> esc_html__( 'Popular Stores' , 'savings-pro' ), 'number' => 16, 'item_per_row' => 6, ) ); the_widget( 'WPCoupon_Coupons_Widget', array( 'title'=> esc_html__( 'Recent coupons' , 'savings-pro' ), 'posts_per_page' => 10 ) );*/ ?> </div><!-- .page-content --> </main><!-- #main --> </div><!-- #primary --> </div> <!-- /#content-wrap --> <?php get_footer(); ?>