Add More Social Network Handles To Your WordPress Author Profile

Posted by Nile | Posted in Tutorials | Posted on 05-08-2010 | 4 Comments

Tags: , ,

wordpress-tricks

The authoer’s page by default only allows you to put just enough information up. For those who utilize their authors.php page, they can add more things like your Twitter and Facebook profile to their author profile and not have to even alter the core of their site. You can even add more than that.

This is done by adding and a simple function and filter to your theme’s functions.php file.


function my_new_contactmethods( $contactmethods ) {
// Add Twitter
$contactmethods['twitter'] = 'Twitter';
//add Facebook
$contactmethods['facebook'] = 'Facebook';
//add LinkedIn
$contactmethods['linkedin'] = 'LinkedIn';

return $contactmethods;
}
add_filter(‘user_contactmethods’,'my_new_contactmethods’,10,1);

If you want to add more, you can do that. For example, if I wanted to add in YouTube, I would put the following code in before the return $contactmethods line and after the last social network code listed. Example code:


//add Youtube
$contactmethods['youtube'] = 'Youtube';

In order to call these into your author profile page, you can put the following code. In the case of the code above for Twitter, LinkedIn, and Facebook:

Twitter:


<a href="http://twitter.com/<?php the_author_meta('twitter'); ?>">Twitter</a>

Facebook:


<a href="http://facebook.com/<?php the_author_meta('facebook'); ?>">Facebook</a>

LinkedIn:


<a href="http://linkedin.com/in/<?php the_author_meta('linkedin'); ?>">LinkedIn</a>

As a note, even though you can add as many social network accounts to your WordPress author profile, you should probably use the ones that are the most important and most relevant to your website’s visitors.

Sounds easy?

By the way, Joost de Valk is the one to give credit for the ability to add more to the user contact fields.

WordPress Plugin Review: Sidebar Tabs

Posted by Nile | Posted in Plugins | Posted on 05-04-2010 | 2 Comments

Tags: , , ,

plugins-cat-thumbnail

SidebarTabs is a plugin created by Newton Horta. For a plugin, this one worked great with what I needed it to do. I could tell the plugin how my sidebar code is set up and also customize the look of within my WordPress admin panel. Some of the options were styling the tab colors, the links, the background of the widget area and much more. You will have to create a miscellaneous sidebar in your Read More →

WordPress Plugin Review: Simple Facebook Connect

Posted by Nile | Posted in Plugins | Posted on 04-24-2010 | 3 Comments

Tags: ,

plugins-cat-thumbnail

There are a lot of Facebook applications out there to help a blogger publish their posts on their fan pages and profiles, but I have not found them very handy. In fact, it took quite a few tries to get it right. I found Simple Facebook Connect. I recently started a new project called FandomNews.com. The front end is not designed yet as I am working with another individual on the backend to get things Read More →

Benefits of Using WP-SpamFree WordPress Plugin

Posted by dragonblogger | Posted in Plugins | Posted on 04-14-2010 | 4 Comments

Tags: , , , , , , , , , , ,

plugins-cat-thumbnail

There are several different WordPress Plug-ins that help reduce comment spam on your blog, but one of the best ones you can find is WP-SpamFree. This plugin works differently in that you have more control over the filtering than you do with the Akismet plug-in and this plugin allows you to log all comments so you can be sure you are only catching SPAM and make sure that false positives aren’t being blocked. WP-Spam free Read More →

Network Solutions On WordPress: Fail

Posted by Nile | Posted in News | Posted on 04-14-2010 | 3 Comments

Tags: ,

I have some insight behind the Network Solutions issue. One of my clients I consult for and that I had to fix their WordPress installation also had the Secure File Permissions Matter back in February. Recently, Network Solutions published Tips and Info for Network Solutions WordPress Customers. Guess what, Matt Mullenweg was right and I actually have my own experience to share on this- after dealing with the same issue for A MONTH AND A Read More →

When A Plugin Has A Yo Yo Effect

Posted by Nile | Posted in Plugins | Posted on 04-14-2010 | 1 Comment

Tags:

I really like Digg Digg, but after upgrading it on one site, the css and coding has been messed up where it distorts the site. I am not the only one reporting this. Some of this was to upgrade with update social bookmark API and some of the buttons have aesthetically changed. The problem is that this plugin goes through phases of “it works” or “it breaks” or like I call it… a yo yo Read More →

Unfinished Plugins And Plugins That Are Not Plugins. What!

Posted by Nile | Posted in Plugins | Posted on 03-29-2010 | 1 Comment

Tags:

Personally, I find it annoying when I see a plugin that says “Please do not use this yet.” Why load it up to the WordPress Plugin directory if it is unfinished? Not only is it annoying, but also pointless. Most plugin developers or even most web developers try to develop a finished product. If there are bugs to iron out, then the developer can fix those – at least the plugin is up in its Read More →

How To Display Two Columns For Categories In WordPress

Posted by Nile | Posted in Tutorials | Posted on 03-29-2010 | 1 Comment

Tags: ,

wordpress-tricks

Displaying two columns for categories in your WordPress is not too hard. Just takes a little php, html, and css. You can put this in your posts, pages, or sidebar. We are taking the usual category code for WordPress <?php wp_list_categories(); ?> and replacing it with the following code. This php splits up each category and into columns, much like splitting odds and evens. <?php $cats = explode("<br />",wp_list_categories(‘title_li=&echo=0&depth=1&style=none’)); $cat_n = count($cats) – 1; for Read More →

Why WordPress?

Posted by Nile | Posted in WordPress | Posted on 03-20-2010 | 2 Comments

Tags: ,

[This post is a guest contribution by Stacey Cavanagh, an Online Marketer working for Tecmark: SEO London. You can follow Stacey on Twitter at @staceycav ] WordPress is best known as a blogging platform. Open source, the software is installed on millions of blogs and websites worldwide. It began life in 2003 as a very basic tool and has today expanded to become the most diverse content management system available. All this and it’s free. Read More →

WordPress Plugin Review: WordPress Simple Paypal Shopping Cart

Posted by Nile | Posted in Plugins | Posted on 03-18-2010 | 6 Comments

Tags: ,

plugins-cat-thumbnail

The WordPress Simple Paypal Shopping Cart is a plugin created by Ruhul Amin for those who do not need a fancy shopping cart, but would like to have something they can customize on their site. The backend is quite simple and very light. You only have to put in your Paypal email address, specify if you have shipping, a return URL, and products page URL. You can even change the “Add to Cart” button to Read More →