sharing_show, $show, $this->post

sharing_show, $show, $this->post

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('sharing_show, $show, $this->post') is found 1 times:

  • /sal/class.json-api-post-base.php line 766
    	 */
    	public function is_sharing_enabled() {
    		$show = true;
    		/** This filter is documented in modules/sharedaddy/sharing-service.php */
    		$show = apply_filters( 'sharing_show', $show, $this->post );
    
    		$switched_status = get_post_meta( $this->post->ID, 'sharing_disabled', false );
    
    		if ( ! empty( $switched_status ) ) {
    			$show = false;
    		}