Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #438248

    Is there a short code to add the page title of a portfolio item to a text block?

    #438981

    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

    #1322555

    Can I use this within the Special Heading Element for the Heading Text?

    #1322701

    Hi acscreativenew,

    It cannot be used in the Special Heading element unfortunately.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.