• Resolved Alberto

    (@albert0deavila)


    Good afternoon, I want to show through a shortcode the categories of a post created with cpt ui, is there any code? thank you

    function date_shortcode() {
        $boe = get_field('boe');
        
        ?>
        <h3>Information post:</h3>
        <ul>
     	  <li><strong>Date:</strong> <?php echo $boe; ?></li>
          <li><strong>Categories:</strong> <?php get_the_terms() ?></li>
        </ul>
    
        <?php
    }
    add_shortcode('show-date', 'date_shortcode');
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘I want to show through a shortcode the categories of a post’ is closed to new replies.