[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-includes/ -> shortcodes.php (summary)

WordPress API for creating bbcode-like tags or what WordPress calls "shortcodes". The tag and attribute parsing or regular expression code is based on the Textpattern tag parser. A few examples are below:

File Size: 684 lines (21 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 16 functions

  add_shortcode()
  remove_shortcode()
  remove_all_shortcodes()
  shortcode_exists()
  has_shortcode()
  apply_shortcodes()
  do_shortcode()
  get_shortcode_regex()
  do_shortcode_tag()
  do_shortcodes_in_html_tags()
  unescape_invalid_shortcodes()
  get_shortcode_atts_regex()
  shortcode_parse_atts()
  shortcode_atts()
  strip_shortcodes()
  strip_shortcode_tag()

Functions
Functions that are not part of a class:

add_shortcode( $tag, $callback )   X-Ref
Adds a new shortcode.

Care should be taken through prefixing or other means to ensure that the
shortcode tag being added is unique and will not conflict with other,
already-added shortcode tags. In the event of a duplicated tag, the tag
loaded last will take precedence.

since: 2.5.0
param: string   $tag      Shortcode tag to be searched in post content.
param: callable $callback The callback function to run when the shortcode is found.

remove_shortcode( $tag )   X-Ref
Removes hook for shortcode.

since: 2.5.0
param: string $tag Shortcode tag to remove hook for.

remove_all_shortcodes()   X-Ref
Clear all shortcodes.

This function is simple, it clears all of the shortcode tags by replacing the
shortcodes global by a empty array. This is actually a very efficient method
for removing all shortcodes.

since: 2.5.0

shortcode_exists( $tag )   X-Ref
Whether a registered shortcode exists named $tag

since: 3.6.0
return: bool Whether the given shortcode exists.
param: string $tag Shortcode tag to check.

has_shortcode( $content, $tag )   X-Ref
Whether the passed content contains the specified shortcode

since: 3.6.0
return: bool Whether the passed content contains the given shortcode.
param: string $content Content to search for shortcodes.
param: string $tag     Shortcode tag to check.

apply_shortcodes( $content, $ignore_html = false )   X-Ref
Search content for shortcodes and filter shortcodes through their hooks.

This function is an alias for do_shortcode().

since: 5.4.0
return: string Content with shortcodes filtered out.
param: string $content     Content to search for shortcodes.
param: bool   $ignore_html When true, shortcodes inside HTML elements will be skipped.

do_shortcode( $content, $ignore_html = false )   X-Ref
Search content for shortcodes and filter shortcodes through their hooks.

If there are no shortcode tags defined, then the content will be returned
without any filtering. This might cause issues when plugins are disabled but
the shortcode will still show up in the post or content.

since: 2.5.0
return: string Content with shortcodes filtered out.
param: string $content     Content to search for shortcodes.
param: bool   $ignore_html When true, shortcodes inside HTML elements will be skipped.

get_shortcode_regex( $tagnames = null )   X-Ref
Retrieve the shortcode regular expression for searching.

The regular expression combines the shortcode tags in the regular expression
in a regex class.

The regular expression contains 6 different sub matches to help with parsing.

1 - An extra [ to allow for escaping shortcodes with double [[]]
2 - The shortcode name
3 - The shortcode argument list
4 - The self closing /
5 - The content of a shortcode when it wraps some content.
6 - An extra ] to allow for escaping shortcodes with double [[]]

since: 2.5.0
since: 4.4.0 Added the `$tagnames` parameter.
return: string The shortcode search regular expression
param: array $tagnames Optional. List of shortcodes to find. Defaults to all registered shortcodes.

do_shortcode_tag( $m )   X-Ref
Regular Expression callable for do_shortcode() for calling shortcode hook.

since: 2.5.0
return: string|false Shortcode output on success, false on failure.
param: array $m Regular expression match array.

do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames )   X-Ref
Search only inside HTML elements for shortcodes and process them.

Any [ or ] characters remaining inside elements will be HTML encoded
to prevent interference with shortcodes that are outside the elements.
Assumes $content processed by KSES already.  Users with unfiltered_html
capability may get unexpected output if angle braces are nested in tags.

since: 4.2.3
return: string Content with shortcodes filtered out.
param: string $content     Content to search for shortcodes.
param: bool   $ignore_html When true, all square braces inside elements will be encoded.
param: array  $tagnames    List of shortcodes to find.

unescape_invalid_shortcodes( $content )   X-Ref
Remove placeholders added by do_shortcodes_in_html_tags().

since: 4.2.3
return: string Content with placeholders removed.
param: string $content Content to search for placeholders.

get_shortcode_atts_regex()   X-Ref
Retrieve the shortcode attributes regex.

since: 4.4.0
return: string The shortcode attribute regular expression

shortcode_parse_atts( $text )   X-Ref
Retrieve all attributes from the shortcodes tag.

The attributes list has the attribute name as the key and the value of the
attribute as the value in the key/value pair. This allows for easier
retrieval of the attributes, since all attributes have to be known.

since: 2.5.0
return: array|string List of attribute values.
param: string $text

shortcode_atts( $pairs, $atts, $shortcode = '' )   X-Ref
Combine user attributes with known attributes and fill in defaults when needed.

The pairs should be considered to be all of the attributes which are
supported by the caller and given as a list. The returned attributes will
only contain the attributes in the $pairs list.

If the $atts list has unsupported attributes, then they will be ignored and
removed from the final returned list.

since: 2.5.0
return: array Combined and filtered attribute list.
param: array  $pairs     Entire list of supported attributes and their defaults.
param: array  $atts      User defined attributes in shortcode tag.
param: string $shortcode Optional. The name of the shortcode, provided for context to enable filtering

strip_shortcodes( $content )   X-Ref
Remove all shortcode tags from the given content.

since: 2.5.0
return: string Content without shortcode tags.
param: string $content Content to remove shortcode tags.

strip_shortcode_tag( $m )   X-Ref
Strips a shortcode tag based on RegEx matches against post content.

since: 3.3.0
return: string|false The content stripped of the tag, otherwise false.
param: array $m RegEx matches against post content.



Generated: Thu Apr 25 01:00:03 2024 Cross-referenced by PHPXref 0.7.1