Sha256: 740d5044358a53a356b10cb4ebdb91b29480101655a0d66b8b8f3c254816fba7

Contents?: true

Size: 586 Bytes

Versions: 1

Compression:

Stored size: 586 Bytes

Contents

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

/* -------------------------
Req: WP 4.1 and PHP 5.3
------------------------- */

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

// CUSTOM POST TYPE
// FORMAT  : add_post_type(name, <args>)
// check edge.thesyne.com/wordpress for detail

// THUMBNAIL SIZE
// FORMAT  : add_image_size("thumbnail", <width>, <height>, <crop or not>);
// EXAMPLE : add_image_size("thumbnail", 200, 150, true);

// Remove Unnecessary ADMIN SIDEBAR
function get_removed_list() {
  return array("Comments", "Media");
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
edge_framework-2.1.1 template/wordpress/functions.php