CloudFlare provides free CDN and also it provides free SSL. When adding SSL there will be four options like i) off ii) Flexible iii) Full iv) Full (Strict). In this post, we are going to deal with the difference between CloudFlare SSL off vs Flexible Vs Full vs Full Strict. The difference between all these […]
Wordpress
www vs non-www Which Should You use
After much reading on www vs non-www Which Should You use, I have concluded today that using www is good. But only if start a new blog with no much traffic. Else it may affect your ranking. If are starting new Website then go for www.yourdomain.com else please don’t shift to any other. Will www […]
How to Display ads only on Desktop browsers and not in Mobile Browser WordPress
In this post, I’m going to share you the method of How to Display ads only on Desktop browsers and not in Mobile Browser. Mission: How to Display ads only on Desktop browsers and not in Mobile Browser Requirements: WordPress Step 1: Go to our admin panel. Appearance-> Widgets. Step 2: Add Text widget. Step 3: Paste […]
Reduce Navigation Menu to One Level Depth in Genesis
Reduce Navigation Menu to One Level Depth in Genesis Below is the code to reduce the primary navigation menu to one level depth in Genesis. add_filter( ‘wp_nav_menu_args’, ‘prefix_generate_primary_menu_args’ ); function prefix_generate_primary_menu_args( $args ){ if( ‘primary’ != $args[‘theme_location’] ) return $args; $args[‘depth’] = 1; return $args; } reduce-primary-navigation-menu-one-level-depth.php Below is the code to reduce the […]
How to Display Today’s Date in WordPress
Many blogs and websites use Magazine style of theme and so the like to add date in the page. It was first started by newspapers but now many non newspaper blogs too wanted to display date. Displaying todays’s date looks professional. Before somedays adding Today’s date was difficult but now after many updates it is […]
Open Live Editor Review
I have been using WordPress for the past 10 years. Usually I will be writing small posts and so it was easy for me to post something in WordPress. But recently I have started to write some long essays and so I feel hard to edit in the WordPress. Even though WordPress editor is good […]