Widget
How to Register Widget in WordPress
Widget is most common use in WordPress especially in sidebar & footer. Now I am going to describe how to register a widget in WordPress for WordPress theme. A common function given below to register widget in WordPress theme. function widget_function_name() { register_sidebar( array( 'name' => __( ' ', ' ' ),… Read More
Widget
How to PHP code support in WordPress widget
Normally PHP code not working in WordPress default widget. But when we write a function for supporting PHP code in widget, than it is working good. On this tune I am going describe “How to PHP code support in WordPress widget”. For supporting PHP code in WordPress widget you need to take this function in… Read More