jetpack_post_list_display_share_action
jetpack_post_list_display_share_action
Appears in: jetpack.11.3.1, jetpack.11.3.2, jetpack.11.4, jetpack.11.5.1, jetpack.11.6, jetpack.11.8, jetpack.11.8.4, jetpack.11.9, jetpack.11.9.1, jetpack.12.0, jetpack.12.1, jetpack.12.1.1, jetpack.12.2.1, jetpack.12.3, jetpack.12.5, jetpack.12.6, jetpack.12.6.1, jetpack.12.7.1, jetpack.12.8, jetpack.12.8.1, jetpack.12.9, jetpack.12.9.3, jetpack.13.0, jetpack.13.1.1, jetpack.13.1.3, jetpack.13.2, jetpack.13.2.1, jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0
Hook Type: filter
See hook in action
Displaying hooks found in version: jetpack.14.0apply_filters('jetpack_post_list_display_share_action') is found 1 times:
- /jetpack_vendor/automattic/jetpack-post-list/src/class-post-list.php line 136
* * @param boolean Whether we should show the share action for this post type. * @param string The current post type. */ apply_filters( 'jetpack_post_list_display_share_action', false, $post_type ) ) { // Add Share post action. add_filter( 'post_row_actions', array( $this, 'add_share_action' ), 20, 2 ); add_filter( 'page_row_actions', array( $this, 'add_share_action' ), 20, 2 ); } }