]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/default/image.php
WordPress 4.5.1-scripts
[autoinstalls/wordpress.git] / wp-content / themes / default / image.php
index 80dad8ace8383ac856b13e3a6e208d4a065dc75f..4312630feea4d52f94138445d6326c4e5f69d020 100644 (file)
@@ -32,19 +32,19 @@ get_header();
                                                <?php the_taxonomies(); ?>
                                                You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
 
-                                               <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+                                               <?php if ( comments_open() && pings_open() ) {
                                                        // Both Comments and Pings are open ?>
                                                        You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
 
-                                               <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+                                               <?php } elseif ( !comments_open() && pings_open() ) {
                                                        // Only Pings are Open ?>
                                                        Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
 
-                                               <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+                                               <?php } elseif ( comments_open() && !pings_open() ) {
                                                        // Comments are open, Pings are not ?>
                                                        You can skip to the end and leave a response. Pinging is currently not allowed.
 
-                                               <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+                                               <?php } elseif ( !comments_open() && !pings_open() ) {
                                                        // Neither Comments, nor Pings are open ?>
                                                        Both comments and pings are currently closed.