Sha256: b5d3d507c7d514dc1a52bcd49b2fef8f63ccbadef6dff0798b0bd1b523c7e82e
Contents?: true
Size: 602 Bytes
Versions: 2
Compression:
Stored size: 602 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 : type-name, <icon>, <taxonomy-name> // EXAMPLE : add_post_type("Product", "cart", "Brand"); // 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
edge_framework-2.1.0 | template/wordpress/functions.php |
edge_framework-2.0.0 | template/wordpress/functions.php |