Is there a short code to add the page title of a portfolio item to a text block?
Hi squarelight!
Please add following code to Functions.php file in Appearance > Editor
function page_id_shortcode( $atts ){
return get_the_title();
}
add_shortcode( 'my_page_id', 'page_id_shortcode' );
And use the shortcode as following [my_page_id]
Cheers!
Yigit
Can I use this within the Special Heading Element for the Heading Text?