Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active April 10, 2019 12:38
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 WordPress-Handbuch/382833358fadd7a590083b3fa1d5ec70 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/382833358fadd7a590083b3fa1d5ec70 to your computer and use it in GitHub Desktop.
Adding a simple shortcode for a new HTML bold italics tag through WordPress' hook mechanism
function wh_shortcode_boldanditalics( $attributes, $content ) {
// Hier kann beliebiger PHP-Code ausgeführt werden
return '<b><i>' . $content . '</i></b>';
}
add_shortcode( 'fettkursiv', 'wh_shortcode_boldanditalics' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment