jetpack_sharing_tag_list

jetpack_sharing_tag_list

Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.5

apply_filters('jetpack_sharing_tag_list') is found 2 times:

  • /extensions/blocks/sharing-button/class-sharing-source-block.php line 157
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
         * @param string $tags     Comma-separated list of tags.
         * @param int    $post_id  Post ID.
         * @param int    $this->id Sharing ID.
         */
        $tag_list = (string) apply_filters( 'jetpack_sharing_tag_list', implode( ', ', $tags ), $post_id, $this->id );
     
        return html_entity_decode( wp_kses( $tag_list, '' ), ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 );
    }
     
    /**
     * Get the URL for the link.
  • /modules/sharedaddy/sharing-sources.php line 191
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
         * @param string $tags     Comma-separated list of tags.
         * @param int    $post_id  Post ID.
         * @param int    $this->id Sharing ID.
         */
        $tag_list = (string) apply_filters( 'jetpack_sharing_tag_list', implode( ', ', $tags ), $post_id, $this->id );
     
        return html_entity_decode( wp_kses( $tag_list, '' ), ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 );
    }
     
    /**
     * Does this sharing source have a custom style.