sharing_meta_box_title, __( Sharing, jetpack
sharing_meta_box_title, __( Sharing, jetpack
Appears in: jetpack.16.0.1
Hook Type: filter
Displaying hooks found in version: jetpack.16.0.1apply_filters('sharing_meta_box_title, __( Sharing, jetpack') is found 1 times:
- /modules/sharedaddy/sharedaddy.php line 51
* @since 2.2.0 * * @param string $var Sharing Meta Box title. Default is "Sharing". */ $title = apply_filters( 'sharing_meta_box_title', __( 'Sharing', 'jetpack' ) ); if ( $post->ID !== get_option( 'page_for_posts' ) ) { foreach ( $post_types as $post_type ) { add_meta_box( 'sharing_meta', $title, 'sharing_meta_box_content', $post_type, 'side', 'default', array( '__back_compat_meta_box' => true ) ); } } }