wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



pre_do_shortcode_tag › WordPress Filter Hooks

Da4.7.0
Deprecaton/a
apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m )
Parametri: (4)
  • (false|string) $output Short-circuit return value. Either false or the value to replace the shortcode with.
    Richiesto:
  • (string) $tag Shortcode name.
    Richiesto:
  • (array|string) $attr Shortcode attributes array or the original arguments string if it cannot be parsed.
    Richiesto:
  • (array) $m Regular expression match array.
    Richiesto:
Definito a:
Codex:

Filters whether to call a shortcode callback.

Returning a non-false value from filter will short-circuit the shortcode generation process, returning that value instead.





Sorgenti

$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m );