Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dboutote
Created January 11, 2016 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dboutote/3e8e58d35b8487445e9c to your computer and use it in GitHub Desktop.
Save dboutote/3e8e58d35b8487445e9c to your computer and use it in GitHub Desktop.
Basic WordPress site set up functionality
<?php
function site_setup() {
// This network uses post thumbnails
add_theme_support( 'post-thumbnails' );
// enable excerpts on page post_types
add_post_type_support('page', 'excerpt');
// Adds RSS feed links to <head> for posts and comments.
add_theme_support( 'automatic-feed-links' );
}
add_action( 'after_setup_theme', 'site_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment