Created
September 5, 2019 12:01
-
-
Save imran-khan1/7ec86972e178e67576caaa872c57b74c to your computer and use it in GitHub Desktop.
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 | |
//flatsome theme customize accounts area | |
function add_flatsome_account_links() { | |
$label = "My Test Link"; | |
$endpoint = "test-endpoint"; | |
?> | |
<li class="<?php echo wc_get_account_menu_item_classes( $endpoint ); ?>"> | |
<a style="color: red" href="<?php echo esc_url( wc_get_account_endpoint_url( $endpoint ) ); ?>"><?php echo esc_html( $label ); ?></a> | |
</li> | |
<?php | |
} | |
add_filter('flatsome_account_links','add_flatsome_account_links'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment