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/regulus/404.php
<?php get_header(); ?>

	<div id="content">

		<h2>Doh!</h2>
		<p>Something has gone wrong, the page you're looking for can't be found.</p>
		<p>Hopefully one of the options below will help you</p>
		<ul>
		<li>You can search the site using the search box to the right</li>
		<li>You could visit <a href="<?php echo home_url( '/' ); ?>">the homepage</a></li>
		<li>Or you could have a look through the recent posts listed below, maybe what you're looking for is there</li>
		</ul>

		<h3>Recent Posts</h3>
		<ul>
		<?php
		query_posts('posts_per_page=5');
		if (have_posts()) : while (have_posts()) : the_post(); ?>
			<li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink for : %s' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php the_title(); ?></a>
		<?php endwhile; endif; ?>
		</ul>

	</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>