parent()->get('Version'));
wp_enqueue_style( 'bakers-bakery-style', get_stylesheet_uri(), array( $parentcss ), $theme->get('Version'));
wp_enqueue_style( 'bakers-bakery-style', get_stylesheet_uri(), array( $parentcss ) );
require get_theme_file_path( '/custom-option.php' );
wp_add_inline_style( 'bakers-bakery-style',$cake_shop_bakery_theme_css );
require get_parent_theme_file_path( '/custom-option.php' );
wp_add_inline_style( 'cake-shop-bakery-basic-style',$cake_shop_bakery_theme_css );
wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true );
wp_enqueue_style( 'flatly-css', esc_url(get_template_directory_uri()) . '/assets/css/flatly.css');
}
add_action( 'wp_enqueue_scripts', 'bakers_bakery_enqueue_styles' );
function bakers_bakery_admin_scripts() {
// demo CSS
wp_enqueue_style( 'bakers-bakery-demo-css', get_theme_file_uri( 'assets/css/demo.css' ) );
}
add_action( 'admin_enqueue_scripts', 'bakers_bakery_admin_scripts' );
if ( ! function_exists( 'bakers_bakery_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function bakers_bakery_setup() {
add_theme_support( 'responsive-embeds' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded
tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
add_image_size('bakers-bakery-featured-header-image', 2000, 660, true);
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'cake_shop_bakery_custom_background_args', array(
'default-color' => '',
'default-image' => '',
) ) );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 50,
'width' => 50,
'flex-width' => true,
) );
add_editor_style( array( '/editor-style.css' ) );
add_theme_support( 'align-wide' );
add_theme_support( 'woocommerce' );
add_theme_support( 'wp-block-styles' );
}
endif;
add_action( 'after_setup_theme', 'bakers_bakery_setup' );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function bakers_bakery_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'bakers-bakery' ),
'id' => 'sidebar',
'description' => esc_html__( 'Add widgets here.', 'bakers-bakery' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'bakers_bakery_widgets_init' );
function bakers_bakery_remove_my_action() {
remove_action( 'remove_menu_page','cake-shop-bakery-info' );
remove_action( 'admin_menu','demo_importer_admin_page' );
remove_action( 'admin_notices','cake_shop_bakery_deprecated_hook_admin_notice' );
}
add_action( 'init', 'bakers_bakery_remove_my_action');
add_action('admin_menu', 'remove_my_theme_page', 999);
function remove_my_theme_page() {
remove_submenu_page('themes.php','cake-shop-bakery-info');
}
/**
* Get CSS
*/
function bakers_bakery_getpage_css($hook) {
wp_register_script( 'admin-notice-script', get_stylesheet_directory_uri() . '/inc/admin/js/admin-notice-script.js', array( 'jquery' ) );
wp_localize_script('admin-notice-script','bakers_bakery',
array('admin_ajax' => admin_url('admin-ajax.php'),'wpnonce' => wp_create_nonce('bakers_bakery_dismissed_notice_nonce')
)
);
wp_enqueue_script('admin-notice-script');
wp_localize_script( 'admin-notice-script', 'bakers_bakery_ajax_object',
array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
);
if ( 'appearance_page_bakers-bakery-info' != $hook ) {
return;
}
}
add_action( 'admin_enqueue_scripts', 'bakers_bakery_getpage_css' );
//Admin Notice For Getstart
function bakers_bakery_ajax_notice_handler() {
if ( isset( $_POST['type'] ) ) {
$type = sanitize_text_field( wp_unslash( $_POST['type'] ) );
update_option( 'dismissed-' . $type, TRUE );
}
}
function bakers_bakery_deprecated_hook_admin_notice() {
// Check if the notice has been dismissed by the user
$dismissed = get_user_meta(get_current_user_id(), 'bakers_bakery_dismissable_notice', true);
// Exclude the notice from being shown on the "Theme Importer" page
$current_screen = get_current_screen();
if ($current_screen && $current_screen->id === 'appearance_page_theme-importer') {
return; // Don't show the notice on this page
}
if (!$dismissed) {
?>