• Hi there,
    love your plugin! I’ve just one question:

    how to use shortcode IMDB plugin in php?

    my code:

    `<?php echo do_shortcode( ‘[imdb style=”dark”]<?php get_field(‘imdbcode’); ?>[/imdb]’ ); ?>

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter C0D3R

    (@novin)

    and use this :

    ` <?php
    if (get_field(‘imdbcode’)):
    echo do_shortcode(‘[imdb style=”dark”]<?php get_field(imdbcode); ?>[/imdb]’);
    endif;
    ?>

    but not work!

    help me please

    I am the coder of Shortcode IMDB and I’ve just saw your message here by luck. You are writing php code wrong. You are trying to open php tag in php. Your code must be like the following example:

    if (get_field(‘imdbcode’)):
    echo do_shortcode(‘[imdb style=”dark”]'.get_field('imdbcode').'[/imdb]’);
    endif;
    • This reply was modified 5 years, 6 months ago by Kemal YAZICI.
    • This reply was modified 5 years, 6 months ago by Kemal YAZICI.
    • This reply was modified 5 years, 6 months ago by Kemal YAZICI.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to use Shortcode IMDB’ is closed to new replies.