Remove Opengraph meta
-
Hi,
I want to remove the Opengraph meta from the page and I use the following code.
add_action( 'wp_loaded', array( $this, 'filter_paid_content_meta' ), 1 );
public function filter_paid_content_meta() { if ( class_exists( 'Buddypress_Share_Public' ) ) { remove_action( 'wp_head', array( 'Buddypress_Share_Public', 'bp_share_opengraph' ), 999 ); list_wp_head_actions(); exit; } }
The code runs but the action does not get removed.
What is the proper way to remove it?
- The topic ‘Remove Opengraph meta’ is closed to new replies.