Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dinamiko/3fc1600ef324f049fce5 to your computer and use it in GitHub Desktop.
Save Dinamiko/3fc1600ef324f049fce5 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Boton
* Description: Un ejemplo de shortcode
*/
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Crea shortcode [boton]
* [boton]texto[/boton]
*/
function boton_shortcode( $atts, $content = null ) {
$boton = '<a style="" href="">';
$boton .= $content;
$boton .= '</a>';
return $boton;
}
add_shortcode( 'boton', 'boton_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment