Created
May 19, 2013 17:32
-
-
Save paulgibbs/5608357 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was close. All I was missing was the square brackets around 'menu_icon'. Thanks Paul. Legendary support.