//MODO MANTENIMIENTO:
function mode_maintenance(){
if(!current_user_can('edit_themes') || !is_user_logged_in()){
wp_die('
SITIO WEB EN MANTENIMIENTO
Estamos en construcción, pronto recibirás nuevas noticias...

', 'Sitio en Mantenimiento', array( 'response' => 503 ));
}
}
add_action('init', 'mode_maintenance');
/**
* ColorMag functions related to defining constants, adding files and WordPress core functionality.
*
* Defining some constants, loading all the required files and Adding some core functionality.
*
* @uses add_theme_support() To add support for post thumbnails and automatic feed links.
* @uses register_nav_menu() To add support for navigation menu.
* @uses set_post_thumbnail_size() To set a custom post thumbnail size.
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Define Theme Constants.
*/
$theme = wp_get_theme( 'colormag' );
define( 'COLORMAG_THEME_VERSION', $theme['Version'] );
/**
* Define Directory Location Constants
*/
define( 'COLORMAG_PARENT_DIR', get_template_directory() );
define( 'COLORMAG_CHILD_DIR', get_stylesheet_directory() );
define( 'COLORMAG_INCLUDES_DIR', COLORMAG_PARENT_DIR . '/inc' );
define( 'COLORMAG_CSS_DIR', COLORMAG_PARENT_DIR . '/css' );
define( 'COLORMAG_JS_DIR', COLORMAG_PARENT_DIR . '/js' );
define( 'COLORMAG_LANGUAGES_DIR', COLORMAG_PARENT_DIR . '/languages' );
define( 'COLORMAG_ADMIN_DIR', COLORMAG_INCLUDES_DIR . '/admin' );
define( 'COLORMAG_WIDGETS_DIR', COLORMAG_INCLUDES_DIR . '/widgets' );
define( 'COLORMAG_CUSTOMIZER_DIR', COLORMAG_INCLUDES_DIR . '/customizer' );
define( 'COLORMAG_ELEMENTOR_DIR', COLORMAG_INCLUDES_DIR . '/elementor' );
define( 'COLORMAG_ELEMENTOR_WIDGETS_DIR', COLORMAG_ELEMENTOR_DIR . '/widgets' );
define( 'COLORMAG_ADMIN_IMAGES_DIR', COLORMAG_ADMIN_DIR . '/images' );
/**
* Define URL Location Constants
*/
define( 'COLORMAG_PARENT_URL', get_template_directory_uri() );
define( 'COLORMAG_CHILD_URL', get_stylesheet_directory_uri() );
define( 'COLORMAG_INCLUDES_URL', COLORMAG_PARENT_URL . '/inc' );
define( 'COLORMAG_CSS_URL', COLORMAG_PARENT_URL . '/css' );
define( 'COLORMAG_JS_URL', COLORMAG_PARENT_URL . '/js' );
define( 'COLORMAG_LANGUAGES_URL', COLORMAG_PARENT_URL . '/languages' );
define( 'COLORMAG_ADMIN_URL', COLORMAG_INCLUDES_URL . '/admin' );
define( 'COLORMAG_WIDGETS_URL', COLORMAG_INCLUDES_URL . '/widgets' );
define( 'COLORMAG_CUSTOMIZER_URL', COLORMAG_INCLUDES_URL . '/customizer' );
define( 'COLORMAG_ELEMENTOR_URL', COLORMAG_INCLUDES_URL . '/elementor' );
define( 'COLORMAG_ELEMENTOR_WIDGETS_URL', COLORMAG_ELEMENTOR_URL . '/widgets' );
define( 'COLORMAG_ADMIN_IMAGES_URL', COLORMAG_ADMIN_URL . '/images' );
/** ColorMag setup file, hooked for `after_setup_theme`. */
require COLORMAG_INCLUDES_DIR . '/colormag-setup.php';
/** ColorMag content width file. */
require COLORMAG_INCLUDES_DIR . '/colormag-content-width.php';
/** Helper functions. */
require COLORMAG_INCLUDES_DIR . '/helper-functions.php';
/** Template functions files. */
require COLORMAG_INCLUDES_DIR . '/template-tags.php';
require COLORMAG_INCLUDES_DIR . '/template-functions.php';
/** WP_Query functions files. */
require COLORMAG_INCLUDES_DIR . '/colormag-wp-query.php';
/** Dynamic class file include. */
require_once COLORMAG_INCLUDES_DIR . '/colormag-dynamic-classes.php';
/**
* Load required theme hook files.
*/
require_once COLORMAG_INCLUDES_DIR . '/hooks/hooks.php';
require_once COLORMAG_INCLUDES_DIR . '/hooks/header.php';
require_once COLORMAG_INCLUDES_DIR . '/hooks/content.php';
require_once COLORMAG_INCLUDES_DIR . '/hooks/footer.php';
/** Load functions */
require_once COLORMAG_INCLUDES_DIR . '/custom-header.php';
require_once COLORMAG_CUSTOMIZER_DIR . '/class-colormag-customizer.php';
require_once COLORMAG_INCLUDES_DIR . '/enqueue-scripts.php';
require_once COLORMAG_INCLUDES_DIR . '/class-colormag-dynamic-css.php';
/** Add the WooCommerce plugin support */
if ( class_exists( 'WooCommerce' ) ) {
require_once COLORMAG_INCLUDES_DIR . '/woocommerce.php';
}
/** Add the Elementor compatibility file */
if ( defined( 'ELEMENTOR_VERSION' ) ) {
require_once COLORMAG_ELEMENTOR_DIR . '/elementor.php';
require_once COLORMAG_ELEMENTOR_DIR . '/elementor-functions.php';
}
/** Add meta boxes. */
require_once COLORMAG_INCLUDES_DIR . '/meta-boxes/class-colormag-meta-boxes.php';
require_once COLORMAG_INCLUDES_DIR . '/meta-boxes/class-colormag-meta-box-page-settings.php';
/** Load migration scripts. */
require_once COLORMAG_INCLUDES_DIR . '/migration.php';
/** Load Widgets and Widgetized Area */
require_once COLORMAG_WIDGETS_DIR . '/widgets.php';
/**
* Load deprecated functions.
*/
require_once COLORMAG_INCLUDES_DIR . '/deprecated/deprecated-filters.php';
require_once COLORMAG_INCLUDES_DIR . '/deprecated/deprecated-functions.php';
require_once COLORMAG_INCLUDES_DIR . '/deprecated/deprecated-hooks.php';
/**
* Load Demo Importer Configs.
*/
if ( class_exists( 'TG_Demo_Importer' ) ) {
require get_template_directory() . '/inc/demo-config.php';
}
/**
* Calling in the admin area for the Welcome Page as well as for the new theme notice too.
*/
if ( is_admin() ) {
require get_template_directory() . '/inc/admin/class-colormag-admin.php';
require get_template_directory() . '/inc/admin/class-colormag-dashboard.php';
require get_template_directory() . '/inc/admin/class-colormag-notice.php';
require get_template_directory() . '/inc/admin/class-colormag-welcome-notice.php';
require get_template_directory() . '/inc/admin/class-colormag-upgrade-notice.php';
require get_template_directory() . '/inc/admin/class-colormag-theme-review-notice.php';
}
/**
* Detect plugin. For use on Front End only.
*/
include_once ABSPATH . 'wp-admin/includes/plugin.php';
Online - EducaSpain
https://educaspain.com/tag/online/
Red Internacional de Enseñanza del Español
Tue, 26 Jul 2022 14:20:17 +0000
es
hourly
1
https://wordpress.org/?v=6.4.7
https://educaspain.com/wp-content/uploads/2019/12/cropped-Cuadrado-600-px-32x32.jpg
Online - EducaSpain
https://educaspain.com/tag/online/
32
32
101115499 -
Profesor de español en línea
https://educaspain.com/caducado/empleo-caducado/dunnokid/
https://educaspain.com/caducado/empleo-caducado/dunnokid/#respond
Mon, 29 Mar 2021 10:19:14 +0000
https://educaspain.com/?p=19414
https://educaspain.com/caducado/empleo-caducado/dunnokid/feed/
0
19414
-
I Conferencia Profes de ELE por el Mundo
https://educaspain.com/eventos/didactas-conferencia-ele-mundo/
https://educaspain.com/eventos/didactas-conferencia-ele-mundo/#respond
Tue, 09 Feb 2021 13:59:26 +0000
https://educaspain.com/?post_type=mec-events&p=19367
Del 27 al 28 de febrero y del 6 al 7 de marzo de 2021.]]>
https://educaspain.com/eventos/didactas-conferencia-ele-mundo/feed/
0
19367
-
Examen de español profesional – LanguageCert USAL esPro
https://educaspain.com/caducado/empleo-caducado/examen-espanol-profesional-languagecert-usal-espro/
https://educaspain.com/caducado/empleo-caducado/examen-espanol-profesional-languagecert-usal-espro/#comments
Wed, 10 Jun 2020 18:10:14 +0000
https://educaspain.com/?p=18567
https://educaspain.com/caducado/empleo-caducado/examen-espanol-profesional-languagecert-usal-espro/feed/
1
18567
-
Examen de inglés oficial – LanguageCert International ESOL
https://educaspain.com/caducado/empleo-caducado/examen-de-ingles-oficial-languagecert-international-esol/
https://educaspain.com/caducado/empleo-caducado/examen-de-ingles-oficial-languagecert-international-esol/#respond
Wed, 10 Jun 2020 13:54:18 +0000
https://educaspain.com/?p=18494
https://educaspain.com/caducado/empleo-caducado/examen-de-ingles-oficial-languagecert-international-esol/feed/
0
18494
-
Telejornadas Difusión
https://educaspain.com/eventos/telejornadas-difusion/
https://educaspain.com/eventos/telejornadas-difusion/#respond
Sun, 17 May 2020 08:13:19 +0000
https://educaspain.com/?post_type=mec-events&p=18109
El viernes 29 de mayo, desde las 14.30h., este novedoso e interesante formato incluirá tres magníficas conferencias, actuación musical en directo, cuentacuentos y muchas sorpresas más.]]>
https://educaspain.com/eventos/telejornadas-difusion/feed/
0
18109
-
Webinario: ¿Qué hay de nuevo? Claves para entender las modificaciones en los nuevos modelos DELE A1 y A2
https://educaspain.com/eventos/webinario-que-hay-de-nuevo-claves-para-entender-las-modificaciones-en-los-nuevos-modelos-dele-a1-y-a2/
https://educaspain.com/eventos/webinario-que-hay-de-nuevo-claves-para-entender-las-modificaciones-en-los-nuevos-modelos-dele-a1-y-a2/#respond
Tue, 03 Mar 2020 09:17:07 +0000
https://educaspain.com/?post_type=mec-events&p=14278
El jueves 5 de marzo se celebra el Webinario "¿Qué hay de nuevo? Claves para entender las modificaciones en los nuevos modelos DELE A1 y A2"]]>
https://educaspain.com/eventos/webinario-que-hay-de-nuevo-claves-para-entender-las-modificaciones-en-los-nuevos-modelos-dele-a1-y-a2/feed/
0
14278
-
Webinario: Panhispanismo ¿realidad o ficción?
https://educaspain.com/eventos/webinario-alfonso-figueroa/
https://educaspain.com/eventos/webinario-alfonso-figueroa/#respond
Mon, 02 Mar 2020 17:38:08 +0000
https://educaspain.com/?post_type=mec-events&p=14246
El lunes 30 de marzo de 2020 se celebra el webinario "Panhispanismo: ¿realidad o ficción? La inclusión de las variedades del español en el aula de ELE"]]>
https://educaspain.com/eventos/webinario-alfonso-figueroa/feed/
0
14246
-
Webinario: Pragmática cognitiva
https://educaspain.com/eventos/webinario-pragmatica-cognitiva/
https://educaspain.com/eventos/webinario-pragmatica-cognitiva/#respond
Mon, 03 Feb 2020 22:20:58 +0000
https://educaspain.com/?post_type=mec-events&p=14157
El 27 de febrero de 2020 se celebra el webinario "Pragmática cognitiva y competencia intercultural: conceptos teóricos y aplicaciones prácticas" ]]>
https://educaspain.com/eventos/webinario-pragmatica-cognitiva/feed/
0
14157
-
Webinario: ¿Cómo planificar un curso E/FE del turismo?
https://educaspain.com/eventos/webinario-curso-efe-turismo/
https://educaspain.com/eventos/webinario-curso-efe-turismo/#respond
Mon, 03 Feb 2020 19:00:42 +0000
https://educaspain.com/?post_type=mec-events&p=14119
El jueves 27 de febrero se celebra un webinario para planificar un curso de español para fines específicos del turismo, organizado por la editorial SGEL.]]>
https://educaspain.com/eventos/webinario-curso-efe-turismo/feed/
0
14119
-
Webinario: Trabajo como profesor en EE.UU.
https://educaspain.com/eventos/webinario-trabajo-como-profesor-en-ee-uu/
Wed, 08 Jan 2020 06:03:56 +0000
https://educaspain.com/?post_type=mec-events&p=13781
13781