This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Untagged | |
*/ | |
query_posts('orderby=title&order=asc&showposts=-1'); | |
if (have_posts()) : | |
while (have_posts()) : the_post(); | |
$tag = get_the_tags(); | |
if (!$tag) { ?> | |
<a href="<?php the_permalink() ?>"><?php the_title(); ?> </a> – <?php edit_post_link('[Edit]'); ?><br /> | |
<?php | |
} | |
endwhile; | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment