Skip to content

Instantly share code, notes, and snippets.

@websupporter
Created October 25, 2016 05:12
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 websupporter/6b82271af559e8c6d457023acfcf4f17 to your computer and use it in GitHub Desktop.
Save websupporter/6b82271af559e8c6d457023acfcf4f17 to your computer and use it in GitHub Desktop.
Add FrontKit support
<?php
add_action( 'after_setup_theme', 'add_frontkit_support' );
function add_frontkit_support() {
add_theme_support( 'frontkit', array(
'title' => '.single-post .entry-title',
'content' => '.single-post .entry-content',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment