Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greenhornet79/ef3bc81608cf80f720d9925e16f035c4 to your computer and use it in GitHub Desktop.
Save greenhornet79/ef3bc81608cf80f720d9925e16f035c4 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'leaky_paywall_profile_your_profile_end', 'zeen_lp_show_extra_profile_data' );
function zeen_lp_show_extra_profile_data( $content ) {
$comment_number = 25;
return $content . '<p>Here is some additional data. You have written ' . $comment_number . ' comments.</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment