954 | | <?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?> |
955 | | <label class="alignleft"> |
956 | | <span class="title"><?php _e( 'Comments' ); ?></span> |
957 | | <select name="comment_status"> |
958 | | <option value=""><?php _e( '— No Change —' ); ?></option> |
959 | | <option value="open"><?php _e( 'Allow' ); ?></option> |
960 | | <option value="closed"><?php _e( 'Do not allow' ); ?></option> |
961 | | </select> |
962 | | </label> |
963 | | <?php endif; if ( post_type_supports( $screen->post_type, 'trackbacks' ) ) : ?> |
964 | | <label class="alignright"> |
965 | | <span class="title"><?php _e( 'Pings' ); ?></span> |
966 | | <select name="ping_status"> |
967 | | <option value=""><?php _e( '— No Change —' ); ?></option> |
968 | | <option value="open"><?php _e( 'Allow' ); ?></option> |
969 | | <option value="closed"><?php _e( 'Do not allow' ); ?></option> |
970 | | </select> |
971 | | </label> |
972 | | <?php endif; ?> |
| 954 | <label class="alignleft"> |
| 955 | <span class="title"><?php _e( 'Comments' ); ?></span> |
| 956 | <select name="comment_status"> |
| 957 | <option value=""><?php _e( '— No Change —' ); ?></option> |
| 958 | <option value="open"><?php _e( 'Allow' ); ?></option> |
| 959 | <option value="closed"><?php _e( 'Do not allow' ); ?></option> |
| 960 | </select> |
| 961 | </label> |
| 962 | <label class="alignright"> |
| 963 | <span class="title"><?php _e( 'Pings' ); ?></span> |
| 964 | <select name="ping_status"> |
| 965 | <option value=""><?php _e( '— No Change —' ); ?></option> |
| 966 | <option value="open"><?php _e( 'Allow' ); ?></option> |
| 967 | <option value="closed"><?php _e( 'Do not allow' ); ?></option> |
| 968 | </select> |
| 969 | </label> |