tgmpa_show_admin_notice_capability
The Enigma tgmpa show admin notice capability hook.
Description
Parameters (1)
- 0. $publish_posts (string) =>
'publish_posts'
- The publish posts.
Usage
- To run the hook, copy the example below.
- $publish_posts = apply_filters( 'tgmpa_show_admin_notice_capability', $publish_posts );
- if ( !empty( $publish_posts ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the tgmpa_show_admin_notice_capability callback
- function filter_tgmpa_show_admin_notice_capability( $publish_posts ) {
- // make filter magic happen here...
- return $publish_posts;
- };
- // add the filter
- add_filter( 'tgmpa_show_admin_notice_capability', 'filter_tgmpa_show_admin_notice_capability', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'tgmpa_show_admin_notice_capability', 'filter_tgmpa_show_admin_notice_capability', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /class-tgm-plugin-activation.php
- if ( ( $this->is_tgmpa_page() || $this->is_core_update_page() ) || get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) || ! current_user_can( apply_filters( 'tgmpa_show_admin_notice_capability', 'publish_posts' ) ) ) {