Title: aroengbinang's Replies | WordPress.org

---

# aroengbinang

  [  ](https://wordpress.org/support/users/aroengbinang/)

 *   [Profile](https://wordpress.org/support/users/aroengbinang/)
 *   [Topics Started](https://wordpress.org/support/users/aroengbinang/topics/)
 *   [Replies Created](https://wordpress.org/support/users/aroengbinang/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/aroengbinang/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/aroengbinang/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/aroengbinang/engagements/)
 *   [Favorites](https://wordpress.org/support/users/aroengbinang/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to Remove ", Page 1" in Paginated Single Post](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/#post-7257823)
 * For the benefit for those who need it, these are the solutions that I got through
   email from Jevuska ([https://www.jevuska.com/](https://www.jevuska.com/)). Many
   thanks to him!
 * To remove paging title from the first page of the paginated post, add to functions.
   php:
 *     ```
       if ( class_exists( 'gregsHighPerformanceSEO' ) ) :
           add_filter( 'pre_get_document_title', function( $title ) {
               if ( is_single() && ( int ) 2 > get_query_var( 'page' ) )
                   return single_post_title( '', false ); //custom title
                   #return ''; //back to default post title
               return $title;
           } );
       endif;
       ```
   
 * To remove paging Meta Description of the first page of the paginated posts, add
   to functions.php
 *     ```
       /**
        * Remove action from anonimous class name
        * Credit https://github.com/herewithme/wp-filters-extras/blob/master/wp-filters-extras.php
        * Build again meta description
        *
        */
       if ( class_exists( 'gregsHighPerformanceSEO' ) ) :
           add_action( 'wp', function( $wp ) {
               if ( isset( $wp->query_vars['page'] ) && ( int ) 2 > $wp->query_vars['page'] )
               {
                   //remove plugin hook
                   global $wp_filter;
                   $hook_name   = 'wp_head';
                   $priority    = 2;
                   $class_name  = 'gregsHighPerformanceSEO';
                   $method_name = 'head_desc';
                   if ( ! isset( $wp_filter[ $hook_name][ $priority ] ) || ! is_array( $wp_filter[ $hook_name ][$priority ] ) )
                       return false;
   
                   foreach( ( array ) $wp_filter[ $hook_name ][ $priority ] as $unique_id => $filter_array )
                   {
                       if ( isset( $filter_array['function'] ) && is_array( $filter_array['function'] ) ) {
                           if ( is_object( $filter_array['function'][0] ) && get_class( $filter_array['function'][0] ) && get_class( $filter_array['function'][0] ) == $class_name && $filter_array['function'][1] == $method_name )
                           {
                               unset( $wp_filter[ $hook_name ][ $priority ][ $unique_id ] );
                           }
                       }
                   }
                   return false;
               }
           } );
   
           //build new meta description early
           add_action( 'wp_head', function() {
               if ( is_single() && ( int ) 2 > get_query_var( 'page' ) )
               {
                   $gregsHighPerformanceSEO = new gregsHighPerformanceSEO;
                   echo $gregsHighPerformanceSEO->head_desc();
               }
           }, 2 );
   
       endif;
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to Remove ", Page 1" in Paginated Single Post](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/#post-7257729)
 * Awesome!
 * It’s not theme issue, but on the Greg’s High Performance SEO plugin’s setting
   under “Main Titles”. Many thanks for turning on the lights!
 * Cheers,
    Bambang
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to Remove ", Page 1" in Paginated Single Post](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-page-1-in-paginated-single-post/#post-7257722)
 * Hi Michael,
 * I’m using Greg’s High Performance SEO, and Twenty Fifteen 1.3 version. Thanks
   for replying, hope to get some lights about the issue.
 * Best regards,
    Bambang
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Random Post in AMP](https://wordpress.org/support/topic/random-post-in-amp/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/random-post-in-amp/#post-7206981)
 * Alright, thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Random Post in AMP](https://wordpress.org/support/topic/random-post-in-amp/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/random-post-in-amp/#post-7206970)
 * Thanks for the suggestion, I should have posted it at the plugin’s support thread.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme Twenty Fourteen] Adsense after second post in the loop](https://wordpress.org/support/topic/theme-twenty-fourteen-adsense-after-second-post-in-the-loop/)
 *  [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/theme-twenty-fourteen-adsense-after-second-post-in-the-loop/#post-6263732)
 * Hi, many thanks for the code.
 * Just wondering what code should be added or changed to place the ads below title?
 * Tried changing the_post with the_content, but the post content disappeared, although
   the ads was at the place where I wanted it to be. The same happened when replaced
   it with the_title.
 * Thanks in advance ….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Preload caching too often](https://wordpress.org/support/topic/preload-caching-too-often/)
 *  [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [11 years ago](https://wordpress.org/support/topic/preload-caching-too-often/#post-6109150)
 * Same problem. Preload started again just a few minutes after finishing scheduled
   preload process. Probably it was because I changed preload schedule and hit “
   preload cache now”, but the original schedule was still there and executed.
 * Tried to resolve it by changing the preload setting to 0, updated, and kept that
   way until more than 2 days (2880 minutes, my scheduled preload settting). It’s
   similar to “flushing period”.
 * Then I set preload schedule again to run at 2880 minutes, updated, without hitting“
   preload cache now”. Two days later preload process started as scheduled, and 
   the problem disappeared.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Pagination] [Plugin: Widget Paginator] Pagination for most viewed posts WP-PostViews](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/#post-2927445)
 * Here’s the link: [http://wordpress.org/extend/plugins/wp-postviews/](http://wordpress.org/extend/plugins/wp-postviews/)
 * The widget title is Views (WP-PostViews views statistics), Statistic Type: Most
   Viewed, Include Views From: Post Only.
 * Regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Pagination] [Plugin: Widget Paginator] Pagination for most viewed posts WP-PostViews](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/#post-2927443)
 * Yes, that’s right. Very glad to hear that…
    Hope to get the left arrow as well.
 * Many thanks Jasie!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Pagination] [Plugin: Widget Paginator] Pagination for most viewed posts WP-PostViews](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/#post-2927438)
 * Hi Jasie,
 * Here’s the link: [http://thearoengbinangproject.com/](http://thearoengbinangproject.com/)
 * Sorry, it’s in Indonesian language, but there’s Google Translate widget that 
   may help.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Pagination] [Plugin: Widget Paginator] Always display left box arrow and loop link?](https://wordpress.org/support/topic/plugin-widget-paginator-always-display-left-box-arrow-and-loop-link/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-widget-paginator-always-display-left-box-arrow-and-loop-link/#post-2927437)
 * Displaying the left arrow without a link would be good enough. Pointing it to
   the last number would be better.
 * Thanks for the response, much appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Pagination] [Plugin: Widget Paginator] Pagination for most viewed posts WP-PostViews](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/)
 *  Thread Starter [aroengbinang](https://wordpress.org/support/users/aroengbinang/)
 * (@aroengbinang)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-widget-paginator-pagination-for-most-viewed-posts-wp-postviews/#post-2927358)
 * Hi Lester, thanks.
 * I’m not sure what to do with the code to paginate WP-PostViews views statistics
   widget, using Widget Paginator plugin? This is to have consistent look, and save
   space. Sorry for my limited knowledge on programming.

Viewing 12 replies - 1 through 12 (of 12 total)