gravityflow_below_workflow_info_entry_detail

The gravityflow_below_workflow_info_entry_detail action allows content to be added below the workflow info on the entry detail page

Parameters

Parameter Type Definition
$form Form The current form.
$entry Entry The Entry object.
$step Step Current workfkow step

Examples

Example 1 -

Placeholder code.

add_action( 'gravityflow_below_workflow_info_entry_detail', 'sh_action_gravityflow_below_workflow_info_entry_detail', 10, 3 );
    function sh_action_gravityflow_below_workflow_info_entry_detail( $form, $entry, $step ) {
        echo 'My content';
    }

Placement

This code should be placed in the functions.php file of your active theme or in a custom functions plugin.