Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #971472

    Hello – Hope all is well.

    Is there a way to add shortcodes to elements?
    Such as the Animated Numbers element? I wanted to add a shortcode that animates the number of posts I have published.

    /*[mynumbers]*/
    function post_numbers( $atts ){
    $count_posts = wp_count_posts();
    $published_posts = $count_posts->publish;
    return $published_posts;
    }
    add_shortcode( ‘mynumbers’, ‘post_numbers’ );

    Then just put the [mynumbers] where the number goes on the Animated Numbers element.

    Thanks

    #971929

    Hey Kevin,

    Unfortunately you cant render a shortcode inside a shortcode it is not so simple at all.
    It would require a lot of modifications which is unfortunately outside from our support policy.

    Best regards,
    Basilis

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