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 […]
Wordpress
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 […]
Custom Breadcrumbs in Genesis Theme
Sometimes we have to customise the breadcrumbs for easy navigation and easy understandings. Here I have given the Breadcrums which I have used. Using this I have layered the Breadcrumbs like a Post under Page. I have used P2P plugin which connects Page to Post. You can simply edit that part and replace your own layer […]