pop_admin_form

Description

The “pop_admin_form” action runs after admin widget form has rendered. It allows to add additional HTML.

A plugin (or theme) can add an action with the code:

<?php add_action( 'pop_admin_form', 'filter_function_name'); ?>

The hook is located in the popular-widget/_inc/form.php file.

Example

// apply action
function action_pop_admin_form( ) {
	//run action here or echo html
}
add_action('pop_admin_form', 'action_pop_admin_form');

Leave a Reply

Your email address will not be published. Required fields are marked *