barebones/functions.php

18 lines
644 B
PHP
Raw Normal View History

2012-05-29 23:42:46 +02:00
<?php
add_theme_support( 'post-thumbnails' );
2012-12-20 22:18:50 +01:00
add_theme_support( 'post-formats', array( 'post' ) );
2012-12-20 22:06:54 +01:00
add_theme_support( 'custom-header' );
2012-12-20 22:18:50 +01:00
add_theme_support( 'custom-background' );
2012-08-24 11:44:15 +02:00
add_post_type_support( 'page', 'excerpt' );
2012-05-29 23:42:46 +02:00
remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'wp_generator' );
remove_action( 'wp_head', 'start_post_rel_link' );
remove_action( 'wp_head', 'index_rel_link' );
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head' );
remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
if ( function_exists( 'register_sidebar' ) )
2012-11-14 01:01:47 +01:00
register_sidebar();