Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*================================================
- #01 Load Parent Theme style.css file
- ================================================*/
- function extra_enqueue_styles() {
- wp_enqueue_style( 'extra-parent', get_template_directory_uri() . '/style.css' );
- }
- add_action( 'wp_enqueue_scripts', 'extra_enqueue_styles' );
- /*================================================
- #02 Load the translations from the child theme folder
- ================================================*/
- function wpcninja_translation() {
- load_child_theme_textdomain( 'extra', get_stylesheet_directory() . '/lang/theme/' );
- load_child_theme_textdomain( 'et_builder', get_stylesheet_directory() . '/lang/builder/' );
- }
- add_action( 'after_setup_theme', 'wpcninja_translation' );
- /*================================================
- #03 Load custom Blog Module
- ================================================*/
- function divi_child_theme_add_custom_module() {
- get_template_part( 'custom-modules/Blog' );
- }
- add_action('et_builder_ready', 'divi_child_theme_add_custom_module' );
- /*================================================
- #04 Create a new image file size - this is optional
- ================================================*/
- add_image_size('wpc-extra-full', 9999, 9999, false );
Advertisement
Add Comment
Please, Sign In to add comment