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 13 14 15 16 17 18 19 20 21 22 23 24 |
<?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");
$parent = get_post($parent_id);
echo '<a href="'. get_permalink($parent_id) . "\" title=\"$parent->post_title\">$parent->post_title</a>";
?>
>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content('Read the rest of this entry »'); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
|