PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [Plain Text]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php global $wpdb, $post;
$posts_table = $wpdb->prefix . "posts";
$parent_id = $wpdb->get_var("SELECT post_parent FROM $posts_table WHERE ID=$post->ID");
?> > <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content('Read the rest of this entry »'); ?>
<?php endwhile; ?>
|