Kurze Anleitung wie man in WordPress eigene Shortcode Filter nutzen kann.
Shortcodes werden bei WordPress über den Hook add_shortcode()
eingebunden.
Hier ein Beispiel für das simple einbinden eines Shortcode Filters.
Proof of concept für den Shortcode Filter:
1 2 3 4 5 6 7 |
function my_testing_shortcode($params) { $myvar = isset($params['myvar']) ? $params['myvar'] : 'default' ; $out = 'Hallo '.$myvar; $out .= '<pre'.'>$params = ' . print_r($params, true) . '</'.'pre>'; return $out; } add_shortcode('testing','my_testing_shortcode'); |
Als Shortcode wird hier [testing myvar="Welt"]