Categories
News WordPress

Socialisting.com Launches with Style @ Tribeca Grand Hotel

After almost a year of grueling labor, the website created to find apartments, jobs and stuff from your friends and their friends is finally going beta!  500+ members and counting! Read the full story.

“I want it to be like Friendster,” declares Socialisting founder Lawrence Lewitinn, then quickly clarifies: “The early days.” We’re at Socialisting’s launch party. I found out about this party because I spotted it on Facebook and recognized some attendees. I found Lawrence at the party through Peter Gaston, a SPIN editor my girlfriend met through work. Friends of friends! Theme!

The description for Lawrence’s List asks members to concentrate on listing jobs they’re involved with. “This list is effective when it’s my friends or their friends meeting/hiring/moving in with my friends or their friends, not if it turns into another Craigslist where crazies/kooks/stalkers can find/meet/harass/kill/cook each other.”

Aren’t strangers the worst?

-Nick Douglas
BlackBook Magazine

Categories
Code WordPress

WordPress: Create a Plugin to Create Custom Taxonomies

An example plugin that demonstrates how to easily add new Taxonomies to your WordPress blog.


<?php
/*
Plugin Name: Yor Custom Taxonomies
Plugin URI: http://stevenword.wpengine.com//
Description: Adds custom taxonomies for your WordPress blog
Version: 1.0.0
Author: Steven Word
Author URI: http://stevenword.wpengine.com/
*/

function skw_build_taxonomies() {

 //VEHICLES
 $vehicle_args = array(
 'label' => 'Vehicles',
 'hierarchical' => true,
 'query_var' => true,
 'rewrite' => array('slug' => 'vehicles')
 );
 register_taxonomy( 'skw_vehicles', 'post', $vehicle_args );

 //BRANDS
 $brand_args = array(
 'label' => 'Brands',
 'hierarchical' => true,
 'query_var' => true,
 'rewrite' => array('slug' => 'brands')
 );
 register_taxonomy( 'skw_brands', 'post', $brand_args );

}
add_action( 'init', 'skw_build_taxonomies', 0 );
?>