Skip to main content

Posts

Showing posts from September, 2019

How to secure WordPress site

WordPress security is a theme critical for each site proprietor. Google boycotts around 10,000+ sites each day for malware and around 50,000 for phishing consistently. On the off chance that you are not kidding about your site, at that point you have to focus on the WordPress security best rehearses. In this guide, we will share all the top WordPress security tips to enable you to ensure your site against programmers and malware WordPress Security in Easy Steps (No Coding) Install a WordPress Backup Solution Best WordPress Security Plugin Enable Web Application Firewall (WAF) Move WordPress Site to SSL/HTTPS WordPress Security for DIY Users Change the Default “admin” username Disable File Editing Disable PHP File Execution Limit Login Attempts Add Two Factor Authentication Change WordPress Database Prefix Password Protect WP-Admin and Login Disable Directory Indexing and Browsing Disable XML-RPC in WordPress Automatically log out Idle Users Add Security Questi...

How To set Up a WordPress Child Theme

Step 1:  Create a folder and name it anything you like. Ex: abhira-child Step 2:  Create a file titled style.css Step 3:  Open the style.css and write below information /* Theme Name: Abhira Child Template: abhira */ view raw style.css  hosted with   by  GitHub Step 4:  Create a file titled functions.php and paste below code to import the parent themes style. <?php add_action( ' wp_enqueue_scripts ' , ' abhira_child_theme_styles ' , PHP_INT_MAX ); function abhira_child_theme_styles () { wp_enqueue_style( ' parent-style ' , get_template_directory_uri() . ' /style.css ' ); } ? > view raw functions.php  hosted with   by  GitHub Step 5:  Now Zip the folder and upload it via Appearance -> Themes -> Add New Step 6:  Activate the theme. Step 7:   After click that, you will be taken to child theme configuration page. Write Theme name, Description and ...

Seo Beginer

Welcome to your SEO learning journey! You'll get the most out of this guide if your desire to learn search engine optimization (SEO) is exceeded only by your willingness to execute and test concepts. This guide is designed to describe all major aspects of SEO, from finding the terms and phrases (keywords) that can generate qualified traffic to your website, to making your site friendly to search engines, to building links and marketing the unique value of your site. The world of search engine optimization is complex and ever-changing, but you can easily understand the basics, and even a small amount of SEO knowledge can make a big difference. Free SEO education is also widely available on the web, including in guides like this! (Woohoo!) Combine this information with some practice and you are well on your way to becoming a savvy SEO. Here's what you'll find in this SEO guide Ever heard of Maslow's hierarchy of needs? It's a theory of psychology that prior...