Description:
This action is used to append content to the Create/Edit SlideDeck form, just below the source configuration bar and above the preview block. You can use this action to append general content or you could use it to append some of your own custom meta/options to save to this SlideDeck's custom meta.
Usage:
To add your own function to output content at the top of the create/edit SlideDeck form, you would hook into this action with the following code:
<?php add_action( 'slidedeck_form_top', 'my_function_name', 10, 2 ); ?>
Parameters:
The slidedeck_form_top action receives 2 parameters
$slidedeck
(array) The SlideDeck descriptor array
$form_action
(string) The action of the current view
Located In File:
/views/form.php
Comments
0 comments
Article is closed for comments.