WP_Embed::run_shortcode()publicWP 1.0

Processes the shortcode.

Since the shortcode needs to be run earlier than other shortcodes, this function removes all existing shortcodes, registers the shortcode, calls do_shortcode(), and then re-registers the old shortcodes.

Метод класса: WP_Embed{}

Хуков нет.

Возвращает

Строку. Content with shortcode parsed.

Использование

global $wp_embed;
$wp_embed->run_shortcode( $content );
$content(строка) (обязательный)
Content to parse.

Заметки

  • Global. Массив. $shortcode_tags

Код WP_Embed::run_shortcode() WP 6.5.2

public function run_shortcode( $content ) {
	global $shortcode_tags;

	// Back up current registered shortcodes and clear them all out.
	$orig_shortcode_tags = $shortcode_tags;
	remove_all_shortcodes();

	add_shortcode( 'embed', array( $this, 'shortcode' ) );

	// Do the shortcode (only the [embed] one is registered).
	$content = do_shortcode( $content, true );

	// Put the original shortcodes back.
	$shortcode_tags = $orig_shortcode_tags;

	return $content;
}