/** * Enqueue script and styles for child theme */ function woodmart_child_enqueue_styles() { wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) ); } add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 10010 ); add_filter( 'gettext', 'wps_translate_words_array' ); add_filter( 'ngettext', 'wps_translate_words_array' ); function wps_translate_words_array( $translated ) { $words = array( // 'word to translate' = > 'translation' 'Related Products' => 'You May Also Like ', ); $translated = str_ireplace( array_keys($words), $words, $translated ); return $translated; } add_action('wp_head', function() { echo '
'; }); add_action('admin_head', function() { echo '
'; }); add_action('wp_footer', function () { echo ''; }, 99);