In wordpress blog, wordpress provide the option to comment on the post and that would be posted on the blog after admin approval. Many of us will be using any number of plugins or the database query that’s been doing the rounds recently to display your most commented posts. But we can achieve it simply by using Wordpress’s query_posts or WP_query().
How to check a value exists in an array
How to check a value exists in an array is a general requirement when using array. We can do it by iterating through the array one by one and checking that the searched value exist or not. But now a days, everybody expects a short method means using built in functions in the language.
Resizing colorbox iframe using jquery
Once I was in problem of resizing colorbox iframe.
The scenario was that I have opened the colorbox iframe for opening a page and that iframe size was according to that opened page content.
Redirecting to another url after contact form 7 submission
As we know, Contact Form 7 redirects to the same URL as the form’s URL after form submissions in the default settings. However, sometimes, we might need to change this to redirect on another URL after submission
How to Change Selection Color in Browser Using CSS
Here is the code to change selection color in browser using CSS:
::-moz-selection { background-color: #ff6200; color: #fff; } ::selection { background-color: #ff6200; color: #fff; }
How to Find Errors in CSS
There are many tools to find errors in CSS documents and fix them ranging from syntax checking, spelling mistakes to compatibility and performance issues.
Jetpack Publicize Not Working – Some Solutions
Jetpack by WordPress.com is a super cool plugin that offers many services for your self-hosted WordPress site. Here we are presenting some general solutions for jetpack publicize not working problem or failure in automatic posting to popular social networks.
Page Not Found Except Home Page Error
WordPress is a powerful CMS. Sometimes a slight tweak can make your website inaccessible. A common problem that most WordPress users face at some point is WordPress posts returning a Page Not Found Error. This may even occur after some updates in theme/plugins or settings. In this article we will show you how to deal with WordPress page not found except home page error.
How to Redirect URL
There are several ways to redirect a user from one URL to another. There might be several reasons to do this. I am describing different ways to redirect a URL or page quickly and seamlessly including redirect URL using JavaScript, use a meta tag, redirect using an htaccess file, redirection using PHP and finally redirect URL in WordPress.
One Sided or Two Sided Box Shadow in CSS
Today, we will learn how to apply shadows to to a box only or one or two edges. First of all we will learn what is box shadow and then will look at different examples to apply them either one side or two sides to a box. Also remember, there is no support in IE8 and previous version.