mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
227 B
Text
5 lines
227 B
Text
// Add a custom heading to the Affiliate Area
|
|
function custom_affiliate_area_heading() {
|
|
echo '<h2>Welcome to Your Affiliate Dashboard!</h2>';
|
|
}
|
|
add_action('affwp_affiliate_dashboard_top', 'custom_affiliate_area_heading');
|