Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove Social Share Button for Specific Post */
- function remove_social_share_for_spesific_post() {
- if ( is_single() ) {
- $slug_post = get_post_field( 'post_name', get_the_ID() );
- $list_post = array( 'the-legend-of-zelda-breath-of-the-wild-gameplay-on-the-nintendo-switch', 'slug-2', 'slug-3' ); /* By Post Slug */
- if ( in_array( $slug_post, $list_post ) ) {
- remove_all_actions( 'jnews_share_top_bar' ); /* Top Position */
- remove_all_actions( 'jnews_share_float_bar' ); /* Float Position */
- remove_all_actions( 'jnews_share_bottom_bar' ); /* Bottom Position */
- }
- }
- }
- add_action( 'wp', 'remove_social_share_for_spesific_post' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement