post_parent ) && $image->post_parent != $id ) $url .= '#main'; return $url; } add_filter( 'attachment_link', 'silesia_enhanced_image_navigation', 10, 2 ); /** * Filters wp_title to print a neat tag based on what is being viewed. * * @since Silesia 1.1 */ function silesia_wp_title( $title, $sep ) { global $page, $paged; if ( is_feed() ) return $title; // Add the blog name $title .= get_bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title .= " $sep $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) $title .= " $sep " . sprintf( __( 'Page %s', 'silesia' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'silesia_wp_title', 10, 2 ); /** * Filters the_content to add the title on Aside posts. * * To ensure the title will be displayed before any other markup that is * injected by plugins, we need to add it right after the content. It is ugly, * but it is how it is. * * @since Silesia 1.1 */ function silesia_aside_title( $content ) { if ( has_post_format( 'aside' ) ) { $content .= the_title( '<header class="entry-header"><h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1></header><!-- .entry-header -->', false ); } return $content; } add_filter( 'the_content', 'silesia_aside_title', 0 ); /** * Adjusts content_width value for pages since they do not have entry meta. * * @since Silesia 1.0 */ function silesia_content_width() { if ( is_page() ) { global $content_width; $content_width = 730; if ( is_page_template( 'full-width.php' ) ) { $content_width = 960; } } } add_action( 'template_redirect', 'silesia_content_width' );