Search Byte.net
Recent Comments from this Network
-
Recent Posts
Recent Comments
Archives
Categories
Author Archives: admin
Custom Columns on Post Administration Pages
You can now add Custom Columns to Post Administration Pages especially when you are using Custom Post Types. The snippets of code below will help you set up new columns for your post type pages in no time. add_filter(’manage_edit-<custom post … Continue reading
Posted in Uncategorized
Leave a comment
WordPress Homepage Pagination
Ever wanted to add Pagination to your homepage list of blogs or your Archive? Well now you can. Here is a snippet of getting pagination right to your theme file. function numbered_page_nav($prelabel = ”, $nxtlabel = ”, $pages_to_show = 6, … Continue reading
Posted in Uncategorized
1 Comment
Canonicalize your WordPress
WordPress recently updated it’s core library to handle Canonicalization of pages and posts to avoid duplicate content(as explained here). Here is a small snippet of code to provide you with a more flexible and customizable way of making canonical URLs … Continue reading
Posted in Uncategorized
1 Comment
Detect a returning user with Browser cookies
There are a few ways to tackle this problem. Let’s take a look at the easiest way to do this. basically, we will be using the browser’s COOKIES. These are data stored in your browser about your visit on a … Continue reading
Posted in Uncategorized
Leave a comment
Remember an Action using Browser Cookies
So if you want to remember a user’s action, all you need are cookies. Cookies, as defined by Wikipedia, is also known as web cookie, browser cookie, and HTTP cookie. It is a piece of text stored on a user’s … Continue reading
Posted in Uncategorized
Leave a comment
Multisite Global Search
While searching for WordPress’ Search method on Google, I came across this useful Multisite Search Plugin by Grial. It’s a simple plugin that utilizes database views for it’s search routine. Basically, it enables you to search your site and your … Continue reading
Posted in Uncategorized
Leave a comment
Recent Comments from All Blogs from your Network
Howdy, we’re here again to share a simple snippet of code to create a widget for your WordPress Blog Network. This piece of code will fetch comments from every site and show it as a simple widget on your sidebar. … Continue reading
Posted in Uncategorized
Leave a comment
WordPress Multisite Custom Registration
There are quite a few plugins that solve this problem, mainly because WordPress’ Multi Site implementation isn’t as flexible and as documented as it’s single installation counterpart. We will try to make a basic custom Multisite Registration with Custom Passwords … Continue reading
Posted in Uncategorized
Leave a comment
WordPress Multi-Site Recent Posts Plugin
There have been little information about HOW to display posts from your Multi-site WordPress Blog. Well look no further, this plugin is a simple solution to our predicament. Basically, what we wanted is to display posts from the blogs on … Continue reading
Posted in Uncategorized
Leave a comment