-
How to add Excerpt Section for page in WordPress?
Add these block of code in your theme’s functions.php add_action(‘init’, ‘add_excerpt_pages’); function add_excerpt_pages() { add_post_type_support( ‘page’, ‘excerpt’ ); }
-
How to get a Mobile SMS from Email?
If you want to get a mobile sms when you visitor fill the form on your website? You can implement…


