What's New Generator Shortcode

Below, you’ll find a detailed guide on how to add the What’s New Generator 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 What’s New Generator Plugin shortcode not to show or not to work correctly.

Before starting, here is an overview of the What’s New Generator Plugin and the shortcodes it provides:

Plugin Icon
What's New Generator

"What's New Generator is a dynamic WordPress plugin, simplifying the creation of 'What's New' sections on your site, ensuring users are always updated with fresh content."

★★★★✩ (5) Active Installs: 40000+ Tested with: 4.9.24 PHP Version: false
Included Shortcodes:
  • [WNG]

What’s New Generator [WNG] Shortcode

The Whats-New-Generator (WNG) shortcode is a powerful tool for displaying new features or updates. This shortcode initiates the ‘show_whatsnew’ function, capturing and returning its output. It allows the embedding of dynamically generated content, such as recent updates, directly into your WordPress posts or pages.

Shortcode: [WNG]

Examples and Usage

Basic example – A straightforward usage of the shortcode which displays the ‘whats new’ section on the website.

[WNG]

PHP Function Code

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

Shortcode line:

add_shortcode( WNG::SHORTCODE, array(&$this,'show_shortcode'));

Shortcode PHP function:

function show_shortcode(){
		ob_start();
		$this->show_whatsnew();
		$contents = ob_get_contents();
		ob_end_clean();
		return $contents;
	}

Code file location:

whats-new-genarator/whats-new-genarator/whats-new-generator.php

Conclusion

Now that you’ve learned how to embed the What’s New Generator 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 *