Tutorials

Category

26 posts found

18 Mar 2018
0.96K
No Comments
Adobe Photoshop – quick light rays effect tutorial

Ideas of rays effect is not mine I have also learned that rays effects from website talk-mania.com in 2008 also I am thankful to author, so today I thought to share this quick rays effects tutorial, this tutorial is very easy and its takes less time and steps to complete.

Post in

15 Mar 2018
2.62K
No Comments

WordPress giving great features in get_posts function with arguments that function also having great customization. get_posts function also give us great result of posts with our complex requirements, so through that function we will get post by post’s url-slug-key. Check out following function I have created to used it easily

Post in

11 Mar 2018
0.43K
No Comments

This error occurred if your server is running on 5 or less version of PHP, for the fixing that problem you need to contact with your hosting support team or change PHP version from cpanel. Solution: Change your PHP version from Cpanel Select PHP version from cpanel php changing version

Post in

21 Feb 2018
6.36K
No Comments

Currently we cannot easily debug application on any smartphone and #Android Provide debugging with #Google #Chrome, I am using my personal mobile phone Redmi Note 4 updated #MIUI 9.2 Stable Version and 7.0 Nougat version. Go to Settings and then go to About Tap on MIUI version until a message

Post in

22 Jan 2018
16.95K
2 Comments

Its really weird from social share application services which redirects share to browser and opened direct social network’s website, eg: we mostly use Facebook, when we click on social share button Facebook its redirect to browser and opened a login page of Facebook instead of open Facebook App if installed,

Post in

6 Jan 2018
0.95K
No Comments

Create folder named whatever you want, I am called SDTuts_WordPress and create subdirectories as in following snapshot. Write basic html in index.html file Write the basic html tags as defined in following code and link stylesheet bootstrap.min.css and theme.css file which we will create. Create css files and write basic styles

Post in

6 Jan 2018
0.88K
No Comments

Download WordPress Download WordPress from https://wordpress.org/download/ Extract WordPress.zip file Extract WordPress.zip file to your projects directory htdocs for xampp or www directory for wamp with name “sdtutsblog”  Start Apache and Mysql Services Click on Start buttons in actions row of Apache MySql Create database go to your browser and enter

Post in

6 Jan 2018
1.59K
No Comments

Create folder and Directories This tutorial is made for all of beginners to learn how to create html to WordPress theme, Here is all of steps are defined with video tutorial, if you are facing any of problem or missed any step watch the video tutorial. Register theme Copy folder

Post in

6 Jan 2018
0.9K
No Comments

single template is used post/post-type inner page, for more read WordPress template hierarchy. Create single.php in theme directory and call get_header and get_footer function to include header and footer section of theme. Start Loop for single post Create breadcrumb and add links Add links and create breadcrumb. Show post title

Post in

6 Jan 2018
35.56K
2 Comments

Create comments template create comments.php file in theme directory and we have already called in single.php by using comment_template() WordPress core function. Create condition of post if comments are enabled else show message look below. if (get_option(‘comment_registration’) && !$user_ID) condition used for registration is enabled from admin panel user must

Post in