Viewing 3 replies - 1 through 3 (of 3 total)
  • Bump for shortcode support.

    Found the solution by adding a function to my theme.

    1- Add this to the functions.php of your theme.

    function latestnews_function( $atts, $content = null ) {
    echo "<div>";
    insert_bknewsticker();
    echo "</div>";
    }
    add_shortcode('latestnews', 'latestnews_function');
    ?>

    2- Now add [latestnews] shortcode in your post or page.

    Thanks cihat74

    it’s working ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcode?’ is closed to new replies.