How to use internal css in WordPress
One of the way to load CSS in your WordPress plugin. You no need to worry about caching while developing your code and no need to separate one more file.
How to use internal css in WordPress Read More »
One of the way to load CSS in your WordPress plugin. You no need to worry about caching while developing your code and no need to separate one more file.
How to use internal css in WordPress Read More »
It is not difficult to get the name using the build in function from WordPress. You may use this for build your own plugin or list out the related post using the category data from the parent category. Here is the PHP Code that can display out the name of the parent category.
How To Get Parent Category Name In WordPress Read More »
I’ve save down the most basic widget code for WordPress, you can copy this to your plugin and modify it to start your first widget. You can save time on this tutorial to help you create wordpress widget from scratch. [code lang="php"] <?php class example_widget extends WP_Widget { function construct() { parent::construct(false, $name = ‘Example
Create WordPress widget template from scratch Read More »
You can add this to your function to enable your short code in widget without pain. [php] add_filter( ‘widget_text’, ‘shortcode_unautop’); add_filter( ‘widget_text’, ‘do_shortcode’); [/php]
Use Shortcodes in WordPress Widget without Plugins Read More »