-
Recent Posts
Recent Comments
- Ahmed on How to make WPML compatible with W3C Total Cache
- Rich Berrill on WordPress shortcode output buffer versus appending to string
- Michael Watts on WordPress shortcode output buffer versus appending to string
- Victor on WordPress footer no longer appearing
- Wordpress Custom Fields in Comments « Ballyhoo Blog on WordPress get_comment_meta and update_comment_meta
Archives
Categories
Meta
Monthly Archives: December 2010
WordPress shortcode output buffer versus appending to string
When your develop a Wordpress plugin there is a big chance that you will need to include a shortcode. If you simply echo each line, you will notice that your output will not appear on the right place. This is because Wordpress will output your code as soon as it encounters the echo. Therefore you should use a different way to get your output on the page. This will ensure that the output will appear on the place where you’ve added the shortcode. Continue reading
Posted in Wordpress
4 Comments
WordPress footer no longer appearing
All of a sudden, the code included by WordPress Plugins dissapeared, the solution was easier than expected but took a lot of work to finally find out put before the body closing tag. Without the tag, the code won’t be … Continue reading