wpd_prerolls_widget_inside_bottom

/* Add custom code inside the bottom of the Pre-rolls widget */ add_action( ‘wpd_prerolls_widget_inside_bottom’, ‘acme_prerolls_widget_inside_bottom’ ); function acme_prerolls_widget_inside_bottom() { // Place your custom code here }

 

Add categories to the bottom of the Details table

/* Display categories at the bottom of the Details table */ add_action( ‘wpd_dataoutput_bottom’, ‘acme_wpd_categories’ ); function acme_wpd_categories() { ?> <?php if ( in_array( get_post_type(), array( ‘flowers’ ) ) ) { ?> <td><span>Categories:</span></td><td><?php echo get_the_term_list( $post->ID, ‘flowers_category’, ”, ‘, ‘ ); ?></td> <?php } ?> <?php if ( in_array( get_post_type(), array( ‘concentrates’ ) ) ) { […]

 

wpd_edibles_widget_after

/* Add custom code after the Edibles widget */ add_action( ‘wpd_edibles_widget_after’, ‘acme_edibles_widget_after’ ); function acme_edibles_widget_after() { // Place your custom code here }

 

wpd_edibles_widget_inside_bottom

/* Add custom code inside the bottom of the Edibles widget */ add_action( ‘wpd_edibles_widget_inside_bottom’, ‘acme_edibles_widget_inside_bottom’ ); function acme_edibles_widget_inside_bottom() { // Place your custom code here }

 

wpd_edibles_widget_inside_top

/* Add custom code inside the top of the Edibles widget */ add_action( ‘wpd_edibles_widget_inside_top’, ‘acme_edibles_widget_inside_top’ ); function acme_edibles_widget_inside_top() { // Place your custom code here }

 

wpd_edibles_widget_before

/* Add custom code before the Edibles widget */ add_action( ‘wpd_edibles_widget_before’, ‘acme_edibles_widget_before’ ); function acme_edibles_widget_before() { // Place your custom code here }

 

wpd_concentrates_widget_inside_bottom

/* Add custom code inside the bottom of the Concentrates widget */ add_action( ‘wpd_concentrates_widget_inside_bottom’, ‘acme_concentrates_widget_inside_bottom’ ); function acme_concentrates_widget_inside_bottom() { // Place your custom code here }

 

wpd_concentrates_widget_inside_top

/* Add custom code inside the top of the Concentrates widget */ add_action( ‘wpd_concentrates_widget_inside_top’, ‘acme_concentrates_widget_inside_top’ ); function acme_concentrates_widget_inside_top() { // Place your custom code here }