allowed_tags

Advertisement

Summery Summery

Display all of the allowed tags in HTML format with attributes.

Syntax Syntax

allowed_tags()

Description Description

This is useful for displaying in the comment area, which elements and attributes are supported. As well as any plugins which want to display it.

Return Return

(string) HTML allowed tags entity encoded.

Source Source

File: wp-includes/general-template.php

		ARRAY_N
	);

	if ( $dayswithposts ) {
		foreach ( (array) $dayswithposts as $daywith ) {
			$daywithpost[] = (int) $daywith[0];
		}
	}

	// See how much we should pad in the beginning.
	$pad = calendar_week_mod( gmdate( 'w', $unixmonth ) - $week_begins );
	if ( 0 != $pad ) {
		$calendar_output .= "\n\t\t" . '<td colspan="' . esc_attr( $pad ) . '" class="pad">&nbsp;</td>';
	}

Advertisement

Changelog Changelog

Changelog
Version Description
1.0.1 Introduced.

Advertisement

Leave a Reply