Last active
May 1, 2024 13:43
-
-
Save kimwhite/04760c0cfae70040d075c24f27aa3d18 to your computer and use it in GitHub Desktop.
Display members phone number as a tel: link on your directory profile page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // do not copy this line. | |
/** | |
* This recipe will make your phone a tel: link | |
* | |
* You can add this recipe to your site by creating a custom plugin | |
* or using the Code Snippets plugin available for free in the WordPress repository. | |
* Read this companion article for step-by-step directions on either method. | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
function my_pmpro_format_phone( $r, $phone ) { | |
global $pmpro_pages; | |
if ( is_page( $pmpro_pages['profile'] )) { | |
$r = '<a href="tel:' . $phone . '">' . $phone . '</a>'; | |
} | |
return $r; | |
} | |
add_filter( 'pmpro_format_phone', 'my_pmpro_format_phone', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment