';
architecture_building_edit_link();
echo ' ';
}
}
endif;
if ( ! function_exists( 'architecture_building_edit_link' ) ) :
function architecture_building_edit_link() {
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
__( 'Edit "%s"', 'architecture-building' ),
get_the_title()
),
'',
''
);
}
endif;
function architecture_building_categorized_blog() {
$architecture_building_category_count = get_transient( 'architecture_building_categories' );
if ( false === $architecture_building_category_count ) {
// Create an array of all the categories that are attached to posts.
$architecture_building_categories = get_categories( array(
'fields' => 'ids',
'hide_empty' => 1,
// We only need to know if there is more than one category.
'number' => 2,
) );
// Count the number of categories that are attached to the posts.
$architecture_building_category_count = count( $architecture_building_categories );
set_transient( 'architecture_building_categories', $architecture_building_category_count );
}
// Allow viewing case of 0 or 1 categories in post preview.
if ( is_preview() ) {
return true;
}
return $architecture_building_category_count > 1;
}
if ( ! function_exists( 'architecture_building_the_custom_logo' ) ) :
function architecture_building_the_custom_logo() {
the_custom_logo();
}
endif;
function architecture_building_category_transient_flusher() {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
// Like, beat it. Dig?
delete_transient( 'architecture_building_categories' );
}
add_action( 'edit_category', 'architecture_building_category_transient_flusher' );
add_action( 'save_post', 'architecture_building_category_transient_flusher' );