Wp2speed Shortcode

Below, you’ll find a detailed guide on how to add the Wp2speed Shortcode to your WordPress website, including its parameters, examples, and PHP function code. Additionally, we’ll assist you with common issues that might cause the Wp2speed Plugin shortcode not to show or not to work correctly.

Before starting, here is an overview of the Wp2speed Plugin and the shortcodes it provides:

Plugin Icon
WP2Speed Faster – Optimize PageSpeed Insights Score 90-100

"WP2Speed Faster – Optimize PageSpeed Insights Score 90-100 is a powerful WordPress plugin designed to boost your website's speed and optimize its performance for a superior user experience."

★✩✩✩✩ (1) Active Installs: 4000+ Tested with: 6.0.6 PHP Version: 5.6
Included Shortcodes:
  • [load_dynamic_by_js]

Wp2speed [load_dynamic_by_js] Shortcode

The wp2speed plugin shortcode, ‘load_dynamic_by_js’, enables dynamically loading content using JavaScript. This function checks if a name attribute is set in the shortcode and then loads the content.

Shortcode: [load_dynamic_by_js]

Parameters

Here is a list of all possible load_dynamic_by_js shortcode parameters and attributes:

  • name – Specifies the unique name of the dynamic content to load.

Examples and Usage

Basic example – The shortcode ‘load_dynamic_by_js’ is used to dynamically load content by JavaScript. The ‘name’ attribute is used to specify the content to be loaded.

[load_dynamic_by_js name="example" /]

Advanced examples

Here, the shortcode is used to load different types of content based on the ‘name’ attribute. The first example loads a JavaScript file named ‘example1’, while the second loads a JavaScript file named ‘example2’.

[load_dynamic_by_js name="example1" /]
[load_dynamic_by_js name="example2" /]

In another advanced usage, the shortcode is used within a PHP function to load a JavaScript file dynamically. The ‘name’ attribute is passed as an argument to the function.


<?php
function load_script() {
    echo do_shortcode('[load_dynamic_by_js name="example3" /]');
}
add_action('wp_footer', 'load_script');
?>

PHP Function Code

In case you have difficulties debugging what causing issues with [load_dynamic_by_js] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('load_dynamic_by_js', array($this, 'load_dynamic_by_js'));

Shortcode PHP function:

function load_dynamic_by_js($atts, $content=null) {
    $name = isset($atts['name'])? $atts['name']: '';
    //$file = isset($atts['tofile'])? (int)$atts['tofile']: 0;
    if($name) return load_dynamic_by_js($name, function() use($content){echo $content;});//, $file
  }

Code file location:

wp2speed/wp2speed/lib/includes/lazy.php

Conclusion

Now that you’ve learned how to embed the Wp2speed Plugin shortcode, understood the parameters, and seen code examples, it’s easy to use and debug any issue that might cause it to ‘not work’. If you still have difficulties with it, don’t hesitate to leave a comment below.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *