06/30/2015 at 10:25 am
#339089
Keymaster
@ Lynn
Make sure all the quotes are single straight-quotes and not fancy-quotes. Also, the function name has to be unique. If it is not that would cause the site to crash. Like so:
add_filters( '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;
}
You would choose the use through entire site option for the snippet.
Hope that helps.
