Filter which links are displayed on the user profile account page.
/** * Filter which links are displayed on the user profile account page. * * @since 2.3.0 * * @see pmpro_shortcode_account * * @param array $pmpro_profile_action_links Can be edit-profile, change-password, logout, or custom. * * @return array $pmpro_profile_action_links */ apply_filters( 'pmpro_account_profile_action_links', $pmpro_profile_action_links ); |
Please note that the $pmpro_member_action_links
array only accepts the following HTML and attributes:
- a
- class
- href
- id
- target
- title
Parameters
- $pmpro_profile_action_links
- array
Return Value
$pmpro_profile_action_links
Source
File: https://github.com/strangerstudios/paid-memberships-pro/blob/master/shortcodes/pmpro_account.php
View in Source CodeRelated Articles and Recipes
Edit the Profile Action Links on the Membership Account Page By Theunis Coetzee