Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created June 12, 2017 12:51
Show Gist options
  • Save ingozoell/3ef7001207e2c0a707982d73063a4251 to your computer and use it in GitHub Desktop.
Save ingozoell/3ef7001207e2c0a707982d73063a4251 to your computer and use it in GitHub Desktop.
WP Shortcode
// Add Shortcode
function fn_marker_pink( $atts, $content = null ) {
// Attributes
extract( shortcode_atts(
array(
'color' => '#cf599b',
'fett' => '400'
), $atts )
);
return '<span style="color: ' . $color . ' !important; font-weight: ' . $fett . ';">'.$content.'</span>';
}
add_shortcode( 'marker_pink', 'fn_marker_pink' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment