• Is there a way to pass parameters through the plug-in?

    It appears the plugin uses the parameters function to pass the ID of the shortcode, but I’m trying to pass additional parameters through which doesn’t appear to be working.

    I found that I can create my own custom shortcodes by editing functions.php and including a different shortcode file that can pass parameters, but while that works these lines in functions.php crash the rest of the shortcodes and most of my site.

        include_once "/var/chroot/home/content/p3pnexwpnas11_data02/53/41840853/html/wp-content/apps/php_files/submissions_code/load_post_previews_show_larger_shortcode.php";
        
        add_shortcode( 'load_meme_preview', 'load_post_previews_show_larger_shortcode' );

    Is there any way I can either pass parameters or stop the plug-in from crashing my site without replacing all of my previous plug-ins manually?

Viewing 1 replies (of 1 total)
  • Plugin Support Temyk

    (@webtemyk)

    Hello.

    In the snippet parameters there is a field Available attributes.

    Available attributes for shortcode via comma. Only numbers, letters and underscore characters are allowed. Attribute id is always available. With this option you can set additional attributes for the shortcode. Example: start_date attribute to [wbcr_php_snippet id=’xxx’ start_date=’2018/01/15′] shortcode. Now we can get attribute value in the snippet with the $start_date variable. It’s convenient if you want to print out different results depending on this attributes.

Viewing 1 replies (of 1 total)
  • The topic ‘Pass parameters through the shortcode?’ is closed to new replies.