/*This file is part of tradexcel-celceramics, wp-toot child theme. All functions of this file will be loaded before of parent theme functions. Learn more at https://codex.wordpress.org/Child_Themes. Note: this function loads the parent stylesheet before, then child theme stylesheet (leave it in place unless you know what you are doing.) */ function tradex_celceramics_enqueue_child_styles() { $parent_style = 'parent-style'; wp_enqueue_style($parent_style, get_template_directory_uri() . '/style.css'); wp_enqueue_script($parent_style, get_stylesheet_directory_uri() . '/custom.js', array('jquery')); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style), wp_get_theme()->get('Version') ); } add_action('wp_enqueue_scripts', 'tradex_celceramics_enqueue_child_styles'); /*Write here your own functions */ /** * Custom Logo on Login Page * @link https://www.wpbeginner.com/wp-tutorials/how-to-change-the-login-logo-in-wordpress/ */ function custom_login_logo() { $logo = site_url() . '/wp-content/uploads/2016/06/tcl_logo.png'; $background = site_url() . '/wp-content/uploads/2019/10/tradexcel-factory.jpg'; echo ''; } add_action('login_head', 'custom_login_logo'); add_action('wp_head', function(){echo '';}, 1);