11/02/2015 at 12:05 pm
#353094
Keymaster
@ Lynn
Oh, I see an error, it should be add_filter not add_filters. Try this version.
add_filter( 'cn_link_options', 'cn_add_new_link_types_make_me_unique' );
function cn_add_new_link_types_make_me_unique( $options ) {
$options['bear'] = 'black bear listing';
$options['whitetail'] = 'whitetail deer listing';
$options['muledeer'] = 'mule deer listing';
$options['moose'] = 'moose listing';
$options['elk'] = 'elk listing';
$options['cougar'] = 'cougar listing';
$options['bison'] = 'bison listing';
$options['wolf'] = 'wolf listing';
$options['antelope'] = 'antelope listing';
$options['waterfowl'] = 'waterfowl listing';
$options['fishing'] = 'fishing listing';
return $options;
}
