Sha256: 6e45e136720fe075e4dad456c64a5f1b139b7ac17a061267c340337f2b20ea0f

Contents?: true

Size: 589 Bytes

Versions: 12

Compression:

Stored size: 589 Bytes

Contents

<?php include "code/main.php";

// THEME SUPPORT
add_theme_support("post-thumbnails"); 
add_theme_support("menus");



/* CUSTOM POST TYPE
   1: Type name, MUST be singular
   2: (opt) Icon name, check http://melchoyce.github.io/dashicons/
   3: (opt) Taxonomy name, MUST be singular
*/
// Example:
add_post_type("Product", "cart", "Brand");
class Product extends Post {};



/* 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

12 entries across 12 versions & 1 rubygems

Version Path
edge_framework-1.3.1 template/wordpress/functions.php
edge_framework-1.3.0 template/wordpress/functions.php
edge_framework-1.2.9 template/wordpress/functions.php
edge_framework-1.2.7 template/wordpress/functions.php
edge_framework-1.2.6 template/wordpress/functions.php
edge_framework-1.2.5 template/wordpress/functions.php
edge_framework-1.2.4 template/wordpress/functions.php
edge_framework-1.2.3 template/wordpress/functions.php
edge_framework-1.2.2 template/wordpress/functions.php
edge_framework-1.2.1 template/wordpress/functions.php
edge_framework-1.2.0 template/wordpress/functions.php
edge_framework-1.1.0 template/wordpress/functions.php