How to add custom CSS in wordpress – without using any plugin

There are quite a few custom css plugins , however majority of them apply the custom css site wide. If you want to apply the css to a specific page, then one approach is to make edits to the theme functions.php file. However this approach is not recommended , as the changes will be lost if you change the theme.

In this tutorial I will share a simple technique to add custom css to a specific Page or Post in WordPress. The best part is that we don’t need to make any edits to the templates files or the functions.php file. We will achieve this without using any custom css plugin.

Read more

How to Bulk Import Users in WordPress

Its very easy to a manually create users in WordPress , but things are not easy if you want to add a bunch of users in one go.

WordPress does not have any inbuilt Import Users wizard, so if you want to add hundreds or thousands of users you are out of luck. You will either need to write some code or use an third party plugin.

In this post I will share a lightweight and a user friendly plugin which will let you import thousands of users with ease. All you need to do is to create a CSV files in a predefined formats and import it using the plugin.  Whats more, you can also bulk import the meta values. Here are the Steps.

Read more

How to Link Widget Titles in WordPress without using a plugin

By default WordPress does not accept hyperlinks in the widget title.  Even if you enter a hyperlink , it will strip down all the html tags  and simply print out the text.  So basically in order to link the widget titles, we’ll need to find a way to make WordPress accept html in Widget Title.

The Snippet

Here is a little snippet which lets you add a hyperlink in the widget title. The snippet  makes use of widget_title filter and it will dynamically replace custom tags with actual html tags. You can use the Code Snippet plugin to run this piece of code.

Read more

How to Display WordPress Login Form in the Sidebar

The one page WordPress site administrator’s use the most is the login page. And most of us have tried to customize the look of that page in one way or another. However, despite providing a custom look, the login page does not always have to be a separate page.

On the contrary, you can easily put the login form in the sidebar. By doing that, you will be providing a simple log in solution for your visitors. The users will also feel encouraged to register into your site once they see the log in form.

Choosing the Plugin

While it is possible to add the log in form manually, we won’t go into that much hassle. Being a proud WordPress user, we have lots of third-party plugins for that purpose. For this tutorial, I will use Sidebar Login, an absolutely free plugin with more than seventy thousand active installs at this moment.

Read more

How to Show Posts from Certain Categories in WordPress SideBar

Category is an important feature of WordPress. By categorizing your posts, you can provide a properly organized site to your visitors. Unfortunately, WordPress does not provide lots of options when it comes to displaying category or related posts. In this regard, the only option you have is the Recent Posts widget. The simple and basic widget does not provide any customization or sorting options.

In today’s post, I will discuss about four plugins that will let you display posts from specific categories. These plugins will allow you to display recent and relevant posts in different ways.

Read more

How to Insert Navigation Menu inside a Page or a Post

In this Post I will share a technique which can be used to insert the Navigation Menu inside your content like Page or a Post. It is really simple and can be done without writing any code.

The Idea Behind

Well the concept is pretty simple. We will insert the navigation menu by embedding the Custom Menu widget inside our content. We will utilize the AMR Shortcode Widget plugin for this.

Read more

5 Best Custom Code Plugins for WordPress

WordPress is an excellent blogging platform, we know that already. However, when it comes to including custom codes, WordPress does not provide any native option. For that purpose, you will need custom code plugins. These plugins let you do everything including inserting codes into the posts, pages or the functions.php file, highlight code, add code to a specific location of your website etc.

Read more