• Resolved ice00

    (@ice00)


    hi,

    thanks for the plugin.

    I wolud like to ask if there is a way to call a function for outputing the html code associated with the button, something like this:
    echo wpi_xxx("[wpi_designer_button id=3224]");

    This if for being able to use the shorcode not inside a page, but in a PHP script running in a page or another plugin call.

    thanks

    https://wordpress.org/plugins/wpi-designer-button-shortcode/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WooPrali

    (@wooprali)

    Hi,
    Thanks for using designer button plugin.

    Sure I will make it possible.

    I need detailed information about this requirement.

    Regards,

    Pralu

    Plugin Author WooPrali

    (@wooprali)

    Hi,

    Please try below code.

    Echo do_shortcode(“[wpi_designer_button id =3224]”);

    I hope your requirement will b fullfilled.

    Regards,

    Prali

    Thread Starter ice00

    (@ice00)

    hi,

    it works like a charm:

    <?php
    
    # show those buttons with random positions:
    $links = array(
    "[wpi_designer_button id =3224]",
    "[wpi_designer_button id =3225]",
    "[wpi_designer_button id =3226]",
    "[wpi_designer_button id =3227]"
    );
    
    shuffle($links);
    echo "<ul>";
    foreach($links as $link) {
      echo "<li>".do_shortcode($link)."</li>";
    }
    echo "</ul>"
    ?>

    essentially the above PHP are inserted into a page throw a PHP plugin and without do_shortcode it was never exploded into HTML as the PHP were itself exploded from a [] tag inside the page.

    Many thanks

    Plugin Author WooPrali

    (@wooprali)

    I am happy. That you problem is solved.

    Thank you for using designer button plugin.

    Regards,

    Prali

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[features] html output of a button’ is closed to new replies.