24 lines
787 B
PHP
24 lines
787 B
PHP
|
|
<?php
|
||
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
|
exit; // Exit if accessed directly
|
||
|
|
}
|
||
|
|
global $pagenow;
|
||
|
|
|
||
|
|
function upstudy_admin_menu(){
|
||
|
|
if ( current_user_can( 'edit_theme_options' ) ) {
|
||
|
|
// Add main menu item that redirects to Customizer
|
||
|
|
add_menu_page( 'Upstudy', esc_html__('تنظیمات آپ استادی (وب یاران)','upstudy'), 'administrator', 'upstudy-admin-menu', 'upstudy_redirect_to_customizer', UPSTUDY_URI . '/assets/images/fav.svg', 4 );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
add_action( 'admin_menu', 'upstudy_admin_menu' );
|
||
|
|
|
||
|
|
function upstudy_redirect_to_customizer() {
|
||
|
|
wp_redirect( admin_url( 'customize.php' ) );
|
||
|
|
exit;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Remove theme activation redirect
|
||
|
|
if ( is_admin() && 'themes.php' == $pagenow && isset( $_GET['activated'] ) ) {
|
||
|
|
// Do nothing - remove redirect
|
||
|
|
}
|