@@ -381,7 +392,7 @@ class Automatically_Paginate_Posts {
*
* @uses add_metabox, __
* @action add_meta_box
* @return null
* @return void
*/
publicfunctionaction_add_meta_boxes(){
foreach($this->post_typesas$post_type){
...
...
@@ -394,16 +405,17 @@ class Automatically_Paginate_Posts {
*
* @param object $post
* @uses esc_attr, checked, _e, __, wp_nonce_field
* @return string
* @return void
*/
publicfunctionmeta_box_autopaging($post){
?>
<p>
<inputtype="checkbox"name="<?phpechoesc_attr($this->meta_key_disable_autopaging);?>"id="<?phpechoesc_attr($this->meta_key_disable_autopaging);?>_checkbox"value="1"<?phpchecked((bool)get_post_meta($post->ID,$this->meta_key_disable_autopaging,true));?>/><labelfor="<?phpechoesc_attr($this->meta_key_disable_autopaging);?>_checkbox">Disable autopaging for this post?</label>
</p>
<pclass="description"><?php_e('Check the box above to prevent this post from automatically being split over multiple pages.','autopaging');?></p>
<pclass="description"><?phpprintf(__('Note that if the %1$s Quicktag is used to manually page this post, automatic paging won\'t be applied, regardless of the setting above.','autopaging'),'<code><!--nextpage--></code>');?></p>
<?php
<pclass="description"><?phpesc_html__('Check the box above to prevent this post from automatically being split over multiple pages.','autopaging');?></p>
<pclass="description"><?phpprintf(esc_html__('Note that if the %1$s Quicktag is used to manually page this post, automatic paging won\'t be applied, regardless of the setting above.','autopaging'),'<code><!--nextpage--></code>');?></p>