رادانش
مرجع دانود فایل های آموزشیورود
برای ورود به حساب کاربری خود شماره تماس خود را وارد کنید.
حساب کاربری ندارید؟ ثبت نام
فقط انتـــــــخابــــــ کن ودانلود کن
از طراحی تا آموزش، هر چی بخوای آمادستــــ !
// Start maintenance mode function enable_maintenance_mode() { if (!is_user_logged_in() || !current_user_can('administrator')) { // Display maintenance message to non-admin users wp_die('
وبسایت در حال حاضر برای بروزرسانی آفلاین است. لطفاً بعداً دوباره مراجعه کنید.
'); } } add_action('get_header', 'enable_maintenance_mode'); // Optional: You can also add a more specific hook for a cleaner exit // add_action('template_redirect', 'enable_maintenance_mode'); // If you want to show a custom page instead of wp_die, you can do this: /* function custom_maintenance_page() { if (!is_user_logged_in() || !current_user_can('administrator')) { // Make sure you have a 'maintenance.php' template in your theme folder // or specify a full path to an HTML file. global $template; $template = locate_template('maintenance.php'); if ( $template ) { load_template($template); } else { // Fallback if maintenance.php is not found wp_die('وبسایت در حال حاضر برای بروزرسانی آفلاین است. لطفاً بعداً دوباره مراجعه کنید.
'); } exit; } } // Uncomment the line below and comment out add_action('get_header', 'enable_maintenance_mode'); // add_action('get_header', 'custom_maintenance_page'); */رادانش
مرجع دانود فایل های آموزشیبرای ورود به حساب کاربری خود شماره تماس خود را وارد کنید.
حساب کاربری ندارید؟ ثبت نام
فقط انتـــــــخابــــــ کن ودانلود کن
از طراحی تا آموزش، هر چی بخوای آمادستــــ !