Descubrí que cualquier tema de WordPress usa estas funciones, pero no entiendo cuál es su propósito y cuál es, en este caso 'themify'
?
Aquí hay algunos ejemplos en Themify functions.php
:
1).
load_theme_textdomain( 'themify', TEMPLATEPATH.'/languages' );
2).
if (function_exists('register_nav_menus')) {
register_nav_menus( array(
'main-nav' => __( 'Main Navigation', 'themify' ),
'footer-nav' => __( 'Footer Navigation', 'themify' ),
) );
}
Y en el archivo tempate:
3). <?php _e( 'Sorry, nothing found.', 'themify' ); ?>
¡Y muchos más! Mi duda es ¿qué significa 'themify'
? ¿Cuál es su propósito? ¿Puedo cambiarlo o borrarlo? ¿Para qué es el lugar, 'themify'
?