Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andrewlimaza/c9454b1db4b260d5da807154132a492f to your computer and use it in GitHub Desktop.
Save andrewlimaza/c9454b1db4b260d5da807154132a492f to your computer and use it in GitHub Desktop.
pmpro_account_bullets_top example
<?php
// Copy code below to PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
function pmpro_account_bullets_top_example() {
echo '<li><strong>Useful Link: </strong><a href="some-link">Click this link to go somewhere</a> </li>';
}
add_action( 'pmpro_account_bullets_top', 'pmpro_account_bullets_top_example' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment