Example #1
0
				<div class="page-content">
					<p><?php 
_e('It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'amplify');
?>
</p>

					<?php 
get_search_form();
?>

					<?php 
the_widget('WP_Widget_Recent_Posts');
?>

					<?php 
if (amplify_categorized_blog()) {
    // Only show the widget if site has multiple categories.
    ?>
					<div class="widget widget_categories">
						<h2 class="widget-title"><?php 
    _e('Most Used Categories', 'amplify');
    ?>
</h2>
						<ul>
						<?php 
    wp_list_categories(array('orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10));
    ?>
						</ul>
					</div><!-- .widget -->
					<?php 
}
Example #2
0
 /**
  * Prints HTML with meta information for the categories, tags and comments.
  */
 function amplify_entry_footer()
 {
     // Hide category and tag text for pages.
     if ('post' == get_post_type()) {
         $categories_list = get_the_category_list(__(', ', 'amplify'));
         if ($categories_list && amplify_categorized_blog() && get_theme_mod('amplify_single_cats') != 1) {
             echo '<i class="fa fa-folder"></i>&nbsp;<span class="cat-links">' . $categories_list . '</span>';
         }
         $tags_list = get_the_tag_list('', __(', ', 'amplify'));
         if ($tags_list && is_single() && get_theme_mod('amplify_single_tags') != 1) {
             echo '<i class="fa fa-tags"></i>&nbsp;<span class="tags-links">' . $tags_list . '</span>';
         }
     }
     edit_post_link(__('Edit', 'amplify'), '<span class="edit-link"><i class="fa fa-pencil"></i>&nbsp;', '</span>');
 }