forked from mirror/_s
_s: simplifying functions.php by making some of the stuff happening there modular with functions being called in templates showing up in template-tags.php, little extras that won't produce a visible error if they're missing in tweaks, and wpcom stuff in wpcom
This commit is contained in:
parent
db89577313
commit
01ce62d24f
256
functions.php
256
functions.php
|
@ -2,28 +2,14 @@
|
||||||
/**
|
/**
|
||||||
* _s functions and definitions
|
* _s functions and definitions
|
||||||
*
|
*
|
||||||
* Sets up the theme and provides some helper functions. Some helper functions
|
|
||||||
* are used in the theme as custom template tags. Others are attached to action and
|
|
||||||
* filter hooks in WordPress to change core functionality.
|
|
||||||
*
|
|
||||||
* When using a child theme (see http://codex.wordpress.org/Theme_Development and
|
|
||||||
* http://codex.wordpress.org/Child_Themes), you can override certain functions
|
|
||||||
* (those wrapped in a function_exists() call) by defining them first in your child theme's
|
|
||||||
* functions.php file. The child theme's functions.php file is included before the parent
|
|
||||||
* theme's file, so the child theme functions would be used.
|
|
||||||
*
|
|
||||||
* Functions that are not pluggable (not wrapped in function_exists()) are instead attached
|
|
||||||
* to a filter or action hook. The hook can be removed by using remove_action() or
|
|
||||||
* remove_filter() and you can attach your own function to the hook.
|
|
||||||
*
|
|
||||||
* For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
|
|
||||||
*
|
|
||||||
* @package _s
|
* @package _s
|
||||||
* @since _s 1.0
|
* @since _s 1.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the content width based on the theme's design and stylesheet.
|
* Set the content width based on the theme's design and stylesheet.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
*/
|
*/
|
||||||
if ( ! isset( $content_width ) )
|
if ( ! isset( $content_width ) )
|
||||||
$content_width = 640; /* pixels */
|
$content_width = 640; /* pixels */
|
||||||
|
@ -36,10 +22,25 @@ if ( ! function_exists( '_s_setup' ) ):
|
||||||
* before the init hook. The init hook is too late for some features, such as indicating
|
* before the init hook. The init hook is too late for some features, such as indicating
|
||||||
* support post thumbnails.
|
* support post thumbnails.
|
||||||
*
|
*
|
||||||
* To override _s_setup() in a child theme, add your own _s_setup to your child theme's
|
* @since _s 1.0
|
||||||
* functions.php file.
|
|
||||||
*/
|
*/
|
||||||
function _s_setup() {
|
function _s_setup() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom template tags for this theme.
|
||||||
|
*/
|
||||||
|
require( get_template_directory() . '/inc/template-tags.php' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom functions that act independently of the theme templates
|
||||||
|
*/
|
||||||
|
//require( get_template_directory() . '/inc/tweaks.php' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WordPress.com-specific functions and definitions
|
||||||
|
*/
|
||||||
|
//require( get_template_directory() . '/inc/wpcom.php' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Make theme available for translation
|
* Make theme available for translation
|
||||||
* Translations can be filed in the /languages/ directory
|
* Translations can be filed in the /languages/ directory
|
||||||
|
@ -71,32 +72,12 @@ function _s_setup() {
|
||||||
add_theme_support( 'post-formats', array( 'aside', ) );
|
add_theme_support( 'post-formats', array( 'aside', ) );
|
||||||
}
|
}
|
||||||
endif; // _s_setup
|
endif; // _s_setup
|
||||||
|
|
||||||
/**
|
|
||||||
* Tell WordPress to run _s_setup() when the 'after_setup_theme' hook is run.
|
|
||||||
*/
|
|
||||||
add_action( 'after_setup_theme', '_s_setup' );
|
add_action( 'after_setup_theme', '_s_setup' );
|
||||||
|
|
||||||
/**
|
|
||||||
* Set a default theme color array for WP.com.
|
|
||||||
*/
|
|
||||||
$themecolors = array(
|
|
||||||
'bg' => 'ffffff',
|
|
||||||
'border' => 'eeeeee',
|
|
||||||
'text' => '444444',
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
|
|
||||||
*/
|
|
||||||
function _s_page_menu_args( $args ) {
|
|
||||||
$args['show_home'] = true;
|
|
||||||
return $args;
|
|
||||||
}
|
|
||||||
add_filter( 'wp_page_menu_args', '_s_page_menu_args' );
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register widgetized area and update sidebar with default widgets
|
* Register widgetized area and update sidebar with default widgets
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
*/
|
*/
|
||||||
function _s_widgets_init() {
|
function _s_widgets_init() {
|
||||||
register_sidebar( array(
|
register_sidebar( array(
|
||||||
|
@ -107,200 +88,5 @@ function _s_widgets_init() {
|
||||||
'before_title' => '<h1 class="widget-title">',
|
'before_title' => '<h1 class="widget-title">',
|
||||||
'after_title' => '</h1>',
|
'after_title' => '</h1>',
|
||||||
) );
|
) );
|
||||||
|
|
||||||
register_sidebar( array(
|
|
||||||
'name' => __( 'Sidebar 2', '_s' ),
|
|
||||||
'id' => 'sidebar-2',
|
|
||||||
'description' => __( 'An optional second sidebar area', '_s' ),
|
|
||||||
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
||||||
'after_widget' => "</aside>",
|
|
||||||
'before_title' => '<h1 class="widget-title">',
|
|
||||||
'after_title' => '</h1>',
|
|
||||||
) );
|
|
||||||
}
|
}
|
||||||
add_action( 'init', '_s_widgets_init' );
|
add_action( 'init', '_s_widgets_init' );
|
||||||
|
|
||||||
if ( ! function_exists( '_s_content_nav' ) ):
|
|
||||||
/**
|
|
||||||
* Display navigation to next/previous pages when applicable
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_content_nav( $nav_id ) {
|
|
||||||
global $wp_query;
|
|
||||||
|
|
||||||
?>
|
|
||||||
<nav id="<?php echo $nav_id; ?>">
|
|
||||||
<h1 class="assistive-text section-heading"><?php _e( 'Post navigation', '_s' ); ?></h1>
|
|
||||||
|
|
||||||
<?php if ( is_single() ) : // navigation links for single posts ?>
|
|
||||||
|
|
||||||
<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', '_s' ) . '</span> %title' ); ?>
|
|
||||||
<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', '_s' ) . '</span>' ); ?>
|
|
||||||
|
|
||||||
<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?>
|
|
||||||
|
|
||||||
<?php if ( get_next_posts_link() ) : ?>
|
|
||||||
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', '_s' ) ); ?></div>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<?php if ( get_previous_posts_link() ) : ?>
|
|
||||||
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', '_s' ) ); ?></div>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
</nav><!-- #<?php echo $nav_id; ?> -->
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
endif; // _s_content_nav
|
|
||||||
|
|
||||||
|
|
||||||
if ( ! function_exists( '_s_comment' ) ) :
|
|
||||||
/**
|
|
||||||
* Template for comments and pingbacks.
|
|
||||||
*
|
|
||||||
* To override this walker in a child theme without modifying the comments template
|
|
||||||
* simply create your own _s_comment(), and that function will be used instead.
|
|
||||||
*
|
|
||||||
* Used as a callback by wp_list_comments() for displaying the comments.
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_comment( $comment, $args, $depth ) {
|
|
||||||
$GLOBALS['comment'] = $comment;
|
|
||||||
switch ( $comment->comment_type ) :
|
|
||||||
case 'pingback' :
|
|
||||||
case 'trackback' :
|
|
||||||
?>
|
|
||||||
<li class="post pingback">
|
|
||||||
<p><?php _e( 'Pingback:', '_s' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', '_s' ), ' ' ); ?></p>
|
|
||||||
<?php
|
|
||||||
break;
|
|
||||||
default :
|
|
||||||
?>
|
|
||||||
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
|
||||||
<article id="comment-<?php comment_ID(); ?>" class="comment">
|
|
||||||
<footer>
|
|
||||||
<div class="comment-author vcard">
|
|
||||||
<?php echo get_avatar( $comment, 40 ); ?>
|
|
||||||
<?php printf( __( '%s <span class="says">says:</span>', '_s' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
|
|
||||||
</div><!-- .comment-author .vcard -->
|
|
||||||
<?php if ( $comment->comment_approved == '0' ) : ?>
|
|
||||||
<em><?php _e( 'Your comment is awaiting moderation.', '_s' ); ?></em>
|
|
||||||
<br />
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<div class="comment-meta commentmetadata">
|
|
||||||
<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><time pubdate datetime="<?php comment_time( 'c' ); ?>">
|
|
||||||
<?php
|
|
||||||
/* translators: 1: date, 2: time */
|
|
||||||
printf( __( '%1$s at %2$s', '_s' ), get_comment_date(), get_comment_time() ); ?>
|
|
||||||
</time></a>
|
|
||||||
<?php edit_comment_link( __( '(Edit)', '_s' ), ' ' );
|
|
||||||
?>
|
|
||||||
</div><!-- .comment-meta .commentmetadata -->
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<div class="comment-content"><?php comment_text(); ?></div>
|
|
||||||
|
|
||||||
<div class="reply">
|
|
||||||
<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
|
||||||
</div><!-- .reply -->
|
|
||||||
</article><!-- #comment-## -->
|
|
||||||
|
|
||||||
<?php
|
|
||||||
break;
|
|
||||||
endswitch;
|
|
||||||
}
|
|
||||||
endif; // ends check for _s_comment()
|
|
||||||
|
|
||||||
if ( ! function_exists( '_s_posted_on' ) ) :
|
|
||||||
/**
|
|
||||||
* Prints HTML with meta information for the current post-date/time and author.
|
|
||||||
* Create your own _s_posted_on to override in a child theme
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_posted_on() {
|
|
||||||
printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="byline"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', '_s' ),
|
|
||||||
esc_url( get_permalink() ),
|
|
||||||
esc_attr( get_the_time() ),
|
|
||||||
esc_attr( get_the_date( 'c' ) ),
|
|
||||||
esc_html( get_the_date() ),
|
|
||||||
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
|
||||||
esc_attr( sprintf( __( 'View all posts by %s', '_s' ), get_the_author() ) ),
|
|
||||||
esc_html( get_the_author() )
|
|
||||||
);
|
|
||||||
}
|
|
||||||
endif;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds custom classes to the array of body classes.
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_body_classes( $classes ) {
|
|
||||||
// Adds a class of single-author to blogs with only 1 published author
|
|
||||||
if ( ! is_multi_author() ) {
|
|
||||||
$classes[] = 'single-author';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $classes;
|
|
||||||
}
|
|
||||||
add_filter( 'body_class', '_s_body_classes' );
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if a blog has more than 1 category
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_categorized_blog() {
|
|
||||||
if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) {
|
|
||||||
// Create an array of all the categories that are attached to posts
|
|
||||||
$all_the_cool_cats = get_categories( array(
|
|
||||||
'hide_empty' => 1,
|
|
||||||
) );
|
|
||||||
|
|
||||||
// Count the number of categories that are attached to the posts
|
|
||||||
$all_the_cool_cats = count( $all_the_cool_cats );
|
|
||||||
|
|
||||||
set_transient( 'all_the_cool_cats', $all_the_cool_cats );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( '1' != $all_the_cool_cats ) {
|
|
||||||
// This blog has more than 1 category so _s_categorized_blog should return true
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
// This blog has only 1 category so _s_categorized_blog should return false
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Flush out the transients used in _s_categorized_blog
|
|
||||||
*
|
|
||||||
* @since _s 1.0
|
|
||||||
*/
|
|
||||||
function _s_category_transient_flusher() {
|
|
||||||
// Like, beat it. Dig?
|
|
||||||
delete_transient( 'all_the_cool_cats' );
|
|
||||||
}
|
|
||||||
add_action( 'edit_category', '_s_category_transient_flusher' );
|
|
||||||
add_action( 'save_post', '_s_category_transient_flusher' );
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Filter in a link to a content ID attribute for the next/previous image links on image attachment pages
|
|
||||||
*/
|
|
||||||
function _s_enhanced_image_navigation( $url ) {
|
|
||||||
global $post, $wp_rewrite;
|
|
||||||
|
|
||||||
$id = (int) $post->ID;
|
|
||||||
$object = get_post( $id );
|
|
||||||
if ( wp_attachment_is_image( $post->ID ) && ( $wp_rewrite->using_permalinks() && ( $object->post_parent > 0 ) && ( $object->post_parent != $id ) ) )
|
|
||||||
$url = $url . '#main';
|
|
||||||
|
|
||||||
return $url;
|
|
||||||
}
|
|
||||||
add_filter( 'attachment_link', '_s_enhanced_image_navigation' );
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,158 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Custom template tags for this theme.
|
||||||
|
*
|
||||||
|
* Eventually, some of the functionality here could be replaced by core features
|
||||||
|
*
|
||||||
|
* @package _s
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( '_s_content_nav' ) ):
|
||||||
|
/**
|
||||||
|
* Display navigation to next/previous pages when applicable
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_content_nav( $nav_id ) {
|
||||||
|
global $wp_query;
|
||||||
|
|
||||||
|
?>
|
||||||
|
<nav id="<?php echo $nav_id; ?>">
|
||||||
|
<h1 class="assistive-text section-heading"><?php _e( 'Post navigation', '_s' ); ?></h1>
|
||||||
|
|
||||||
|
<?php if ( is_single() ) : // navigation links for single posts ?>
|
||||||
|
|
||||||
|
<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', '_s' ) . '</span> %title' ); ?>
|
||||||
|
<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', '_s' ) . '</span>' ); ?>
|
||||||
|
|
||||||
|
<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?>
|
||||||
|
|
||||||
|
<?php if ( get_next_posts_link() ) : ?>
|
||||||
|
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', '_s' ) ); ?></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ( get_previous_posts_link() ) : ?>
|
||||||
|
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', '_s' ) ); ?></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</nav><!-- #<?php echo $nav_id; ?> -->
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
endif; // _s_content_nav
|
||||||
|
|
||||||
|
if ( ! function_exists( '_s_comment' ) ) :
|
||||||
|
/**
|
||||||
|
* Template for comments and pingbacks.
|
||||||
|
*
|
||||||
|
* Used as a callback by wp_list_comments() for displaying the comments.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_comment( $comment, $args, $depth ) {
|
||||||
|
$GLOBALS['comment'] = $comment;
|
||||||
|
switch ( $comment->comment_type ) :
|
||||||
|
case 'pingback' :
|
||||||
|
case 'trackback' :
|
||||||
|
?>
|
||||||
|
<li class="post pingback">
|
||||||
|
<p><?php _e( 'Pingback:', '_s' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', '_s' ), ' ' ); ?></p>
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
?>
|
||||||
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
||||||
|
<article id="comment-<?php comment_ID(); ?>" class="comment">
|
||||||
|
<footer>
|
||||||
|
<div class="comment-author vcard">
|
||||||
|
<?php echo get_avatar( $comment, 40 ); ?>
|
||||||
|
<?php printf( __( '%s <span class="says">says:</span>', '_s' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
|
||||||
|
</div><!-- .comment-author .vcard -->
|
||||||
|
<?php if ( $comment->comment_approved == '0' ) : ?>
|
||||||
|
<em><?php _e( 'Your comment is awaiting moderation.', '_s' ); ?></em>
|
||||||
|
<br />
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="comment-meta commentmetadata">
|
||||||
|
<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><time pubdate datetime="<?php comment_time( 'c' ); ?>">
|
||||||
|
<?php
|
||||||
|
/* translators: 1: date, 2: time */
|
||||||
|
printf( __( '%1$s at %2$s', '_s' ), get_comment_date(), get_comment_time() ); ?>
|
||||||
|
</time></a>
|
||||||
|
<?php edit_comment_link( __( '(Edit)', '_s' ), ' ' );
|
||||||
|
?>
|
||||||
|
</div><!-- .comment-meta .commentmetadata -->
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<div class="comment-content"><?php comment_text(); ?></div>
|
||||||
|
|
||||||
|
<div class="reply">
|
||||||
|
<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
||||||
|
</div><!-- .reply -->
|
||||||
|
</article><!-- #comment-## -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
endswitch;
|
||||||
|
}
|
||||||
|
endif; // ends check for _s_comment()
|
||||||
|
|
||||||
|
if ( ! function_exists( '_s_posted_on' ) ) :
|
||||||
|
/**
|
||||||
|
* Prints HTML with meta information for the current post-date/time and author.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_posted_on() {
|
||||||
|
printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="byline"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', '_s' ),
|
||||||
|
esc_url( get_permalink() ),
|
||||||
|
esc_attr( get_the_time() ),
|
||||||
|
esc_attr( get_the_date( 'c' ) ),
|
||||||
|
esc_html( get_the_date() ),
|
||||||
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
||||||
|
esc_attr( sprintf( __( 'View all posts by %s', '_s' ), get_the_author() ) ),
|
||||||
|
esc_html( get_the_author() )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if a blog has more than 1 category
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_categorized_blog() {
|
||||||
|
if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) {
|
||||||
|
// Create an array of all the categories that are attached to posts
|
||||||
|
$all_the_cool_cats = get_categories( array(
|
||||||
|
'hide_empty' => 1,
|
||||||
|
) );
|
||||||
|
|
||||||
|
// Count the number of categories that are attached to the posts
|
||||||
|
$all_the_cool_cats = count( $all_the_cool_cats );
|
||||||
|
|
||||||
|
set_transient( 'all_the_cool_cats', $all_the_cool_cats );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( '1' != $all_the_cool_cats ) {
|
||||||
|
// This blog has more than 1 category so _s_categorized_blog should return true
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
// This blog has only 1 category so _s_categorized_blog should return false
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flush out the transients used in _s_categorized_blog
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_category_transient_flusher() {
|
||||||
|
// Like, beat it. Dig?
|
||||||
|
delete_transient( 'all_the_cool_cats' );
|
||||||
|
}
|
||||||
|
add_action( 'edit_category', '_s_category_transient_flusher' );
|
||||||
|
add_action( 'save_post', '_s_category_transient_flusher' );
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Custom functions that act independently of the theme templates
|
||||||
|
*
|
||||||
|
* Eventually, some of the functionality here could be replaced by core features
|
||||||
|
*
|
||||||
|
* @package _s
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_page_menu_args( $args ) {
|
||||||
|
$args['show_home'] = true;
|
||||||
|
return $args;
|
||||||
|
}
|
||||||
|
add_filter( 'wp_page_menu_args', '_s_page_menu_args' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds custom classes to the array of body classes.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_body_classes( $classes ) {
|
||||||
|
// Adds a class of single-author to blogs with only 1 published author
|
||||||
|
if ( is_multi_author() ) {
|
||||||
|
$classes[] = 'group-blog';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
add_filter( 'body_class', '_s_body_classes' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter in a link to a content ID attribute for the next/previous image links on image attachment pages
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
function _s_enhanced_image_navigation( $url, $id ) {
|
||||||
|
if ( ! is_attachment() && ! wp_attachment_is_image( $id ) )
|
||||||
|
return $url;
|
||||||
|
|
||||||
|
$image = get_post( $id );
|
||||||
|
if ( ! empty( $image->post_parent ) && $image->post_parent != $id )
|
||||||
|
$url .= '#main';
|
||||||
|
|
||||||
|
return $url;
|
||||||
|
}
|
||||||
|
add_filter( 'attachment_link', '_s_enhanced_image_navigation', 10, 2 );
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress.com-specific functions and definitions
|
||||||
|
*
|
||||||
|
* @package _s
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a default theme color array for WP.com.
|
||||||
|
*
|
||||||
|
* @since _s 1.0
|
||||||
|
*/
|
||||||
|
$themecolors = array(
|
||||||
|
'bg' => 'ffffff',
|
||||||
|
'border' => 'eeeeee',
|
||||||
|
'text' => '444444',
|
||||||
|
);
|
|
@ -32,9 +32,3 @@
|
||||||
|
|
||||||
<?php endif; // end sidebar widget area ?>
|
<?php endif; // end sidebar widget area ?>
|
||||||
</div><!-- #secondary .widget-area -->
|
</div><!-- #secondary .widget-area -->
|
||||||
|
|
||||||
<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
|
|
||||||
<div id="tertiary" class="widget-area" role="complementary">
|
|
||||||
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
|
||||||
</div><!-- #tertiary .widget-area -->
|
|
||||||
<?php endif; ?>
|
|
Reference in New Issue