Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Created May 19, 2013 17:32
Show Gist options
  • Save paulgibbs/5608357 to your computer and use it in GitHub Desktop.
Save paulgibbs/5608357 to your computer and use it in GitHub Desktop.
<?php
function pg_config_achievement_post_type( $settings ) {
$settings['menu_icon'] = ''; // url here
return $settings;
}
add_filter( 'dpa_register_post_type_achievement', 'pg_config_achievement_post_type' );
@vfowler
Copy link

vfowler commented May 20, 2013

I was close. All I was missing was the square brackets around 'menu_icon'. Thanks Paul. Legendary support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment