layers_before_list_post_meta
The Layers layers before list post meta hook.
Description
do_action( 'layers_before_list_post_meta' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'layers_before_list_post_meta' );
- The following example is for adding a hook callback.
- // define the layers_before_list_post_meta callback
- function action_layers_before_list_post_meta( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'layers_before_list_post_meta', 'action_layers_before_list_post_meta', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'layers_before_list_post_meta', 'action_layers_before_list_post_meta', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /partials/content-list.php
- <?php do_action('layers_before_list_post_meta'); ?>