Get permalink
-
I’d like to use a shortcode in my page editor to insert the permalink into a link but I can’t get it to work and or is buggy.
add_shortcode( 'yo_permalink', 'yo_permalink' ); function yo_permalink($atts, $content) { return get_the_permalink(); }
and on my page editor I add
<a href="[yo_permalink]" data-product_id="38"> add to cart </a>
This creates a hyperlink but with the following address e.g.
https://example.com/page/[yo_permailnk]
If I remove
data-product_id="38"
from the above it works.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Get permalink’ is closed to new replies.