@gnanasekaran
7 years, 5 months ago
When share a page in activity the wp logo and site name and some option add in that activity feed(refer image) how can we remove this footer. This feed coming as a iframe.
IMG : https://drive.google.com/file/d/0Bx1cpJBSncjHcmY0cGtfWXkxSW8/view?usp=sharing
@r-a-y
If the WordPress post is from your own site, you can disable the embed footer by adding the following to your theme’s functions.php:
functions.php
remove_action( 'embed_footer', 'print_embed_sharing_dialog' );
If the WordPress post is not from your own site, you cannot control the footer output for that item.