Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Build a WordPress Plugin Building WordPress Widgets, and Shortcodes How to Create a WordPress Shortcode

suyash patankar
suyash patankar
2,310 Points

Notice : Notice: do_shortcode_tag was called incorrectly.

I copy+paste code from project files attached here.

I get following notice and my shortcode do not work at all.

Notice: do_shortcode_tag was called incorrectly. Attempting to parse a shortcode without a valid callback: wptreehouse_badges Please see Debugging in WordPress for more information. (This message was added in version 4.3.0.) in D:\xampp\htdocs\wordpress\wp-includes\functions.php on line 3622

Please help

1 Answer

Steven Stanton
Steven Stanton
59,998 Points

I just had the same issue. In my case my mistake was that I had made the function that I reference in add_shortcode () private, so WordPress was unable to find it. I don't know if that is of any help.