View gulpfile.js
/* | |
- 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'), |
View style.css
/* 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 */ |
View functions.php
/** | |
* 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' ); | |
} |
View functions.php
<?php | |
/* CTA en el contenido */ | |
add_filter( 'the_content', 'scv_cta_code' ); | |
function scv_cta_code( $content ){ | |
// Definimos nuestro CTA | |
$codeCTA = ' |
View core-blocks.txt
// Útil para filtros de Gutenberg como "allowed_block_types" | |
archives | |
audio | |
button | |
categories | |
code | |
column | |
columns | |
coverImage |
View lessons-reply-notification.php
<?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', 'david@silicodevalley.com' ); |
View mp_cf7_custom_shortcode.php
<?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(); |
View mp_cf7_custom_shortcode.php
<?php | |
// Add custom shortcodes to Contact Form 7 WP plugin | |
add_action( 'wpcf7_init', 'mp_cf7_custom_shortcode' ); | |
function mp_cf7_custom_shortcode(){ | |
// code | |
} |
View mp_get_member_level.php
<?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 |
View memberperks.php
<?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