Sha256: 41eaa277a29272b0bf794bad9128e2a97629945fb8b8ab00d98a9756a30845e1
Contents?: true
Size: 585 Bytes
Versions: 7
Compression:
Stored size: 585 Bytes
Contents
<?php include "code/main.php"; /* ------------------------------------------- WordEdge - Requirement: Wordpress 3.8 and PHP 5.3 ------------------------------------------- */ // THEME SUPPORT add_theme_support("post-thumbnails"); add_theme_support("menus"); // CUSTOM POST TYPE // post-type-name, <icon>, <taxonomy-name> add_post_type("Product", "cart", "Brand"); /* Remove Unnecessary ADMIN SIDEBAR - Use the slug */ function remove_menu_items() { $items = array( "upload.php", ); foreach($items as $item) { remove_menu_page($item); } }
Version data entries
7 entries across 7 versions & 1 rubygems