11/01/2015 at 4:37 pm
#352982
Participant
Hi Steve… Been a long time! I’ve been super busy with other things and now i’m back at this again!
I have added this code to code snippets plugin and it continues to crash my site.
I need the Connections —> Add Entry to have additional options for links to other pages. So when I go to that form to add an outfitter it allows me to add something besides a website and blog. I’m really stuck and don’t know what to do at this point.
add_filters( ‘cn_link_options’, ‘species’ );
function species( $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;
}
Your help is appreciated!
Lynn
