Categories
WordPress WordPress Plugins

Plugin Update: BuddyPress Automatic Friends v2.0.0

BuddyPress Automatic Friends version 2.0.0 is now available.

What’s new in version 2.0.0

* Major OOP rewrite
* Admin Menu compliance with modern BuddyPress versions
* Themes options page
* Adds donate links
* Autocomplete on Global Friend suggestions
* Ajax actions for adding/removing global friends
* General beautification

screenshot-1

screenshot-2

Categories
WordPress WordPress Plugins

Plugin Update: BuddyPress Automatic Friends v1.6

BuddyPress Automatic Friends version 1.6 is now available for download.

What’s new in version 1.6

* Removed debug output on user activation page
* Updated code comments to PHPdoc
* Create friendships upon user activation rather than user registration
* Update friend counts for new users

Update 1.6.1

* Post form to admin settings based on get_admin_url – fixes 404 upon saving options in the admin on multisite installs

Categories
WordPress WordPress Plugins

Plugin Update: BuddyPress Automatic Friends v1.5

BuddyPress Automatic Friends version 1.5 is now available for download.

What’s New in Version 1.5

* Add display that shows which users are selected via the admin panel
* Updated admin menu hook to support multisite
* Updated to support BuddyPress 1.5

Categories
WordPress WordPress Plugins

New Plugin Release: BuddyPress Automatic Friends

I have released a new plugin for BuddyPress that automatically creates and accepts friendships for specified users upon new user registration.  “Tom” thanks you.

You can check it out here!

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*
Plugin Name: Yor Custom Taxonomies
Description: Adds custom taxonomies for your WordPress blog
Version: 1.0.0
Author: Steven Word
*/
 
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 );
?>