Warning: This function has been deprecated.
popmake_render_popup_theme_overlay_meta_box()
Theme Overlay Metabox
Description Description
Extensions (as well as the core plugin) can add items to the theme overlay configuration metabox via the popmake_popup_theme_overlay_meta_box_fields
action.
Source Source
File: includes/functions-deprecated.php
function popmake_render_popup_theme_overlay_meta_box() { if ( ! has_action( 'popmake_popup_theme_overlay_meta_box_fields' ) ) { return; } global $post; wp_nonce_field( basename( __FILE__ ), 'popmake_popup_theme_meta_box_nonce' ); ?> <input type="hidden" name="popup_theme_defaults_set" value="true"/> <div id="popmake_popup_theme_overlay_fields" class="popmake_meta_table_wrap"> <table class="form-table"> <tbody> <?php do_action( 'popmake_popup_theme_overlay_meta_box_fields', $post->ID ); ?> </tbody> </table> </div><?php }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.8.0 | This function has been deprecated. |
1.0 | Introduced. |