Home Forums WordPress How to print shortcode title & category from shortcode in wordpress

Viewing 1 reply thread
  • Author
    Posts
    • #142
      avneesh
      Participant

      I want to add title & and category in shortcode
      like this :

      [custom_post_title title="Athletes" category_id="17669"]

      I want to print the title of the shortcode
      How can i do that Can anyone help me??

    • #143
      avi
      Participant

      Add this code in functions.php file :

      $atts = shortcode_atts( array(
              'title' => null,
              'category_id' => null
          ), $atts);

      and after that you can use the given code for print the value where you want :

      echo $atts['title'];

Viewing 1 reply thread
  • You must be logged in to reply to this topic.
Scroll to Top