Replies: 0
Hello, I’m looking for a way to show Meta Title on frontend as a shortcode. I’ve tried with the same thing with Product Title while doing this correction in functions.php:
<?php
function page_title_sc( ){
return get_the_title();
}
add_shortcode( ‘page_title’, ‘page_title_sc’ );
It works very well. But I’m willing to show the Meta Title instead.
Thank you!