Using conditional tag page_is with Buddypress
-
I want to add my custom social buttons to all “pages” except buddypress pages.
I tried the code below but it didn’t work:add_action( 'woo_content_after', 'custom_social_buttons_page', 1 ); function custom_social_buttons_page() { if ( is_buddypress( )) { //do nothing } else ( is_page()) { ds_social_media_buttons(); } }
Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Using conditional tag page_is with Buddypress’ is closed to new replies.