jetpack_publicize_capability
Filter what user capability is required to use the publicize form on the edit post page.
Description
Useful if publish post capability has been removed from role.
Parameters (1)
- 0. $publish_posts (string) =>
'publish_posts'
- User capability needed to use publicize
Usage
- To run the hook, copy the example below.
- $publish_posts = apply_filters( 'jetpack_publicize_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 jetpack_publicize_capability callback
- function filter_jetpack_publicize_capability( $publish_posts ) {
- // make filter magic happen here...
- return $publish_posts;
- };
- // add the filter
- add_filter( 'jetpack_publicize_capability', 'filter_jetpack_publicize_capability', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'jetpack_publicize_capability', 'filter_jetpack_publicize_capability', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /modules/publicize/ui.php
- $capability = apply_filters( 'jetpack_publicize_capability', 'publish_posts' );