|
@@ 1601-1610 (lines=10) @@
|
| 1598 |
|
if ( $bulk ) : ?> |
| 1599 |
|
|
| 1600 |
|
<div class="inline-edit-group wp-clearfix"> |
| 1601 |
|
<?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?> |
| 1602 |
|
<label class="alignleft"> |
| 1603 |
|
<span class="title"><?php _e( 'Comments' ); ?></span> |
| 1604 |
|
<select name="comment_status"> |
| 1605 |
|
<option value=""><?php _e( '— No Change —' ); ?></option> |
| 1606 |
|
<option value="open"><?php _e( 'Allow' ); ?></option> |
| 1607 |
|
<option value="closed"><?php _e( 'Do not allow' ); ?></option> |
| 1608 |
|
</select> |
| 1609 |
|
</label> |
| 1610 |
|
<?php endif; if ( post_type_supports( $screen->post_type, 'trackbacks' ) ) : ?> |
| 1611 |
|
<label class="alignright"> |
| 1612 |
|
<span class="title"><?php _e( 'Pings' ); ?></span> |
| 1613 |
|
<select name="ping_status"> |
|
@@ 1622-1638 (lines=17) @@
|
| 1619 |
|
<?php endif; ?> |
| 1620 |
|
</div> |
| 1621 |
|
|
| 1622 |
|
<?php else : // $bulk ?> |
| 1623 |
|
|
| 1624 |
|
<div class="inline-edit-group wp-clearfix"> |
| 1625 |
|
<?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?> |
| 1626 |
|
<label class="alignleft"> |
| 1627 |
|
<input type="checkbox" name="comment_status" value="open" /> |
| 1628 |
|
<span class="checkbox-title"><?php _e( 'Allow Comments' ); ?></span> |
| 1629 |
|
</label> |
| 1630 |
|
<?php endif; if ( post_type_supports( $screen->post_type, 'trackbacks' ) ) : ?> |
| 1631 |
|
<label class="alignleft"> |
| 1632 |
|
<input type="checkbox" name="ping_status" value="open" /> |
| 1633 |
|
<span class="checkbox-title"><?php _e( 'Allow Pings' ); ?></span> |
| 1634 |
|
</label> |
| 1635 |
|
<?php endif; ?> |
| 1636 |
|
</div> |
| 1637 |
|
|
| 1638 |
|
<?php endif; // $bulk |
| 1639 |
|
endif; // post_type_supports comments or pings ?> |
| 1640 |
|
|
| 1641 |
|
<div class="inline-edit-group wp-clearfix"> |