HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/paperpunch/sidebar.php
<?php
/**
 * @package WordPress
 * @subpackage Paperpunch
 */
?>
<div id="sidebar">
<?php do_action( 'before_sidebar' ); ?>
	<ul>
		<?php if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( 'sidebar' ) ) : ?>
			<li class="widget widget_recent_entries">
				<h2 class="widgettitle"><?php _e( 'Recent Articles', 'paperpunch' ); ?></h2>
				<ul>
					<?php $side_posts = get_posts( 'numberposts=10' ); foreach($side_posts as $post) : ?>
					<li><a href= "<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
					<?php endforeach; ?>
				</ul>
			</li>
		<?php endif; ?>
	</ul>
</div><!--end sidebar-->