PHPSOFT SOLUTIONS

Wordpress

how to use ajax in wordpress

There are few simple steps to use ajax in wordpress: – ajax calling template/page file element (button / link) – […]

View Post

how to add meta option in post and pages.

step 1 function register() { add_meta_box ( ‘meta_options_metabox’, ‘my meta Options’, ‘meta_metabox’, ‘post’, ‘normal’, ‘high’ ); } /* add_meta_box( “metabox […]

View Post

How to Create Custom Widgets With custome functionality.

Step 1 Extend WP_widget class class MyNewWidget extends WP_Widget () /* WP_Widget class located in wp-includes/widgets.php */ Step 2 function […]

View Post

Install wordpress at your localhost

WordPress is a widely used CMS because of its simplicity and easy to use admin dashboard. Follow the basic steps […]

View Post