This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Funciones Útiles Wordpress / Useful functions for wordpress | |
*/ | |
// Print Nav Menu | |
// https://developer.wordpress.org/reference/functions/wp_nav_menu/ | |
//--------------------------------------------------------------- | |
wp_nav_menu(array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Add a stylesheet after WC styles | |
add_action( 'wp_enqueue_scripts', 'maira_add_stylesheet' ); | |
function maira_add_stylesheet() { | |
wp_register_style( 'woocommerce', get_stylesheet_directory_uri() . '/woocommerce/woocommerce.css' ); | |
if ( class_exists( 'woocommerce' ) ) { | |
wp_enqueue_style( 'woocommerce' ); | |
} | |
} |