- BetterExplained - https://betterexplained.com -

Getting Going with WordPress

A list of what I've done to get the WordPress blog software up and running.

Get setup

Get a theme you like

Tweak

<h2>All Posts</h2>
<ul class="archive-items">
<?php>
$posts =
get_posts('order=DESC&numberposts=50000');
foreach ($posts as $post) :
?>
<li><span class="date"><?php the_time('M d Y') ?></span>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<span class="date"> in</span>
<?php the_category(', ') ?></li>
<?php endforeach; ?>
</ul>

Read Blogs & Articles

Plugins I actually use

Add to wp-config.php: define('WP_CACHE', true);
Added to cached pages:
<!-- Dynamic Page Served (once) in 0.601 seconds -->
<!-- Cached page served by WP-Cache -->
<title><?php if ( function_exists('optimal_title') )
{ optimal_title('|'); bloginfo('name'); }
else { bloginfo('name'); wp_title('|'); } ?>
<?php if ( is_home() ) { ?> |
<?php bloginfo('description'); } ?></title>
<?php if (function_exists('related_posts')) related_posts(); ?>