• Resolved derekbeck

    (@derekbeck)


    What hook or process is being used for Jetpack Sharing to hook to the end of a post or page? I’m trying to duplicate this in my own tinkering for a child theme. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    If you mean to hook after page/posts content, please try like this

    add_filter( 'the_content', 'my_custom_data' );
    
    function my_custom_data($content) {
    
    	return $content.'My contnet';
    
    }

    Safeer

    Thread Starter derekbeck

    (@derekbeck)

    That worked, thanks! I put it in my functionality personal plugin, so don’t even need a child them, so that’s cool. Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘hook to end of a page or post?’ is closed to new replies.