You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p><?php _e( 'It looks like nothing was found at this location. Try using the navigation menu or the search box to locate the page you were looking for.', 'checkout' ); ?></p>
<?php get_search_form(); ?>
<hr/>
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
<hr/>
<div class="widget widget_categories">
<h2 class="widgettitle"><?php _e( 'Most Used Categories', 'checkout' ); ?></h2>
<ul>
<?php
wp_list_categories( array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
) );
?>
</ul>
</div><!-- .widget -->
<hr/>
<?php
$archive_content = '<p>' . __( 'Try looking in the monthly archives.', 'checkout' ) . '</p>';