Skip to content

Instantly share code, notes, and snippets.

View titus-shoats's full-sized avatar

Titus Shoats titus-shoats

View GitHub Profile
@titus-shoats
titus-shoats / Custom Post Icon
Last active November 10, 2016 00:09
wordpress custom post icon
function admin_menu_styles(){
?>
<style>
#menu-posts-products > a > div.wp-menu-image.dashicons-before:before {
content: '\f483';
}
</style>
<?php
<?php
add_action('init','prowp_register_my_post_types');
function prowp_register_my_post_types() {
register_post_type( 'products',
array(
'labels' => array(
'name' => 'Products',
'singular_name'=>'Product',
'add_new'=>'Add New Product',