03/05/2018 at 12:12 pm
#454181
Keymaster
@ David
Install the Code Snippets plugin, copy paste the following example code, tweaking the type as desired. Save and Activate the snippet.
function cn_my_new_link_types( $options ) {
$options['audio_feed'] = 'Audio';
$options['billing'] = 'Billing Website';
$options['claims'] = 'Claims Website';
// This would remove the Blog option.
// Add as an example only, delete it before using.
unset( $options['blog'] );
return $options;
}
add_filter( 'cn_link_options', 'cn_my_new_link_types' );
Hope that helps!
