This file contains 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
/* | |
- Compilar código LESS | |
- Añadir vendor prefixes | |
- Minificar código CSS resultante | |
- Observar los archivos para ejecutar las tareas de forma automática | |
- Recargar automáticamente el navegador | |
*/ | |
var gulp = require('gulp'), | |
autoprefixer = require('gulp-autoprefixer'), |
This file contains 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
/* estilos generales */ | |
.icon::before { | |
display: inline-block; | |
font-style: normal; | |
font-variant: normal; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
} | |
/* estilos de la versión 5, mostrando el icono de facebook */ |
This file contains 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
/** | |
* Remove comments support from posts. | |
*/ | |
add_action( 'init', 'scv_remove_comments_from_posts', 10 ); | |
function scv_remove_comments_from_posts() { | |
remove_post_type_support( 'post', 'comments' ); | |
} |
This file contains 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 | |
/* CTA en el contenido */ | |
add_filter( 'the_content', 'scv_cta_code' ); | |
function scv_cta_code( $content ){ | |
// Definimos nuestro CTA | |
$codeCTA = ' |
This file contains 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
// Útil para filtros de Gutenberg como "allowed_block_types" | |
archives | |
audio | |
button | |
categories | |
code | |
column | |
columns | |
coverImage |
This file contains 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 | |
/* | |
Plugin Name: Lesson Reply Notification | |
Description: Send and email to the student, when he receives a response | |
Author: David Perálvarez | |
Version: 1.0 | |
Author URI: https://silicodevalley.com | |
*/ | |
apply_filters( 'wp_mail_from', '[email protected]' ); |
This file contains 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 custom shortcodes to Contact Form 7 WP plugin | |
add_action( 'wpcf7_init', 'mp_cf7_custom_shortcode' ); | |
function mp_cf7_custom_shortcode(){ | |
wpcf7_add_form_tag( 'show_member_level', 'cf7_get_member_level' ); | |
} | |
function cf7_get_member_level(){ | |
$memberLevel = mp_get_member_level(); |
This file contains 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 custom shortcodes to Contact Form 7 WP plugin | |
add_action( 'wpcf7_init', 'mp_cf7_custom_shortcode' ); | |
function mp_cf7_custom_shortcode(){ | |
// code | |
} |
This file contains 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 | |
// Function to get the member level | |
function mp_get_member_level(){ | |
// Get current user's ID | |
$memberID = get_current_user_id(); | |
if( $memberID != 0 ): | |
// Get member's info |
This file contains 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 | |
/* | |
Plugin Name: MemberPerks | |
Description: Ofrece beneficios a tus usuarios más leales | |
Author: David Perálvarez | |
Version: 1.0.0 | |
Author URI: https://silicodevalley.com | |
*/ | |
// Create the shortcode |
NewerOlder