'admin-appearance', 101 => 'admin-comments', 102 => 'admin-home', 103 => 'admin-links', 104 => 'admin-media', 105 => 'admin-page', 106 => 'admin-plugins', 107 => 'admin-tools', 108 => 'admin-settings', 109 => 'admin-post', 110 => 'admin-users', 111 => 'admin-generic', 112 => 'admin-network', 115 => 'welcome-view-site', 116 => 'welcome-widgets-menus', 117 => 'welcome-comments', 118 => 'welcome-learn-more', 119 => 'welcome-write-blog', 120 => 'wordpress', 122 => 'format-quote', 123 => 'format-aside', 125 => 'format-chat', 126 => 'format-video', 127 => 'format-audio', 128 => 'format-image', 130 => 'format-status', 132 => 'plus', 133 => 'welcome-add-page', 134 => 'align-center', 135 => 'align-left', 136 => 'align-right', 138 => 'align-none', 139 => 'arrow-right', 140 => 'arrow-down', 141 => 'arrow-left', 142 => 'arrow-up', 145 => 'calendar', 147 => 'yes', 148 => 'admin-collapse', 153 => 'dismiss', 154 => 'star-empty', 155 => 'star-filled', 156 => 'sort', 157 => 'pressthis', 158 => 'no', 159 => 'marker', 160 => 'lock', 161 => 'format-gallery', 163 => 'list-view', 164 => 'exerpt-view', 165 => 'image-crop', 166 => 'image-rotate-left', 167 => 'image-rotate-right', 168 => 'image-flip-vertical', 169 => 'image-flip-horizontal', 171 => 'undo', 172 => 'redo', 173 => 'post-status', 174 => 'cart', 175 => 'feedback', 176 => 'cloud', 177 => 'visibility', 178 => 'vault', 179 => 'search', 180 => 'screenoptions', 181 => 'slides', 182 => 'trash', 183 => 'analytics', 184 => 'chart-pie', 185 => 'chart-bar', 200 => 'editor-bold', 201 => 'editor-italic', 203 => 'editor-ul', 204 => 'editor-ol', 205 => 'editor-quote', 206 => 'editor-alignleft', 207 => 'editor-aligncenter', 208 => 'editor-alignright', 209 => 'editor-insertmore', 210 => 'editor-spellcheck', 211 => 'editor-distractionfree', 212 => 'editor-kitchensink', 213 => 'editor-underline', 214 => 'editor-justify', 215 => 'editor-textcolor', 216 => 'editor-paste-word', 217 => 'editor-paste-text', 218 => 'editor-removeformatting', 219 => 'editor-video', 220 => 'editor-customchar', 221 => 'editor-outdent', 222 => 'editor-indent', 223 => 'editor-help', 224 => 'editor-strikethrough', 225 => 'editor-unlink', 226 => 'dashboard', 227 => 'flag', 229 => 'leftright', 230 => 'location', 231 => 'location-alt', 232 => 'images-alt', 233 => 'images-alt2', 234 => 'video-alt', 235 => 'video-alt2', 236 => 'video-alt3', 237 => 'share', 238 => 'chart-line', 239 => 'chart-area', 240 => 'share-alt', 242 => 'share-alt2', 301 => 'twitter', 303 => 'rss', 304 => 'facebook', 305 => 'facebook-alt', 306 => 'camera', 307 => 'groups', 308 => 'hammer', 309 => 'art', 310 => 'migrate', 311 => 'performance', 312 => 'products', 313 => 'awards', 314 => 'forms', 316 => 'download', 317 => 'upload', 318 => 'category', 319 => 'admin-site', 320 => 'editor-rtl', 321 => 'backup', 322 => 'portfolio', 323 => 'tag', 324 => 'wordpress-alt', 325 => 'networking', 326 => 'translation', 328 => 'smiley', 330 => 'book', 331 => 'book-alt', 332 => 'shield', 333 => 'menu', 334 => 'shield-alt', 335 => 'no-alt', 336 => 'id', 337 => 'id-alt', 338 => 'businessman', 339 => 'lightbulb', 340 => 'arrow-left-alt', 341 => 'arrow-left-alt2', 342 => 'arrow-up-alt', 343 => 'arrow-up-alt2', 344 => 'arrow-right-alt', 345 => 'arrow-right-alt2', 346 => 'arrow-down-alt', 347 => 'arrow-down-alt2', 348 => 'info', 459 => 'star-half', 460 => 'minus', 462 => 'googleplus', 463 => 'update', 464 => 'edit', 465 => 'email', 466 => 'email-alt', 468 => 'sos', 469 => 'clock', 470 => 'smartphone', 471 => 'tablet', 472 => 'desktop', 473 => 'testimonial', ); public static function get( $key = null ) { if ( is_numeric( $key ) ) { return isset( self::$dashicons[ $key ] ) ? self::$dashicons[ $key ] : false; } elseif ( is_string( $key ) ) { $by_name = array_flip( self::$dashicons ); return isset( self::$by_name[ $key ] ) ? self::$by_name[ $key ] : false; } return self::$dashicons; } } }