LLMS_Post_Model::allowed_post_tags_set()

Modify allowed post tags for wp_kses for this post


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.post.model.php

	protected function allowed_post_tags_set() {
		global $allowedposttags;
		$allowedposttags['iframe'] = array(
			'allowfullscreen' => true,
			'frameborder'     => true,
			'height'          => true,
			'src'             => true,
			'width'           => true,
		);
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.19.2 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.