Title: ryanlerch's Replies | WordPress.org

---

# ryanlerch

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Knowledge base & Documentation Plugin - WP Knowledgebase] Tracking revisions](https://wordpress.org/support/topic/tracking-revisions/)
 *  [ryanlerch](https://wordpress.org/support/users/ryanlerch/)
 * (@ryanlerch)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/tracking-revisions/#post-6075243)
 * A quick test shows that you just need to add ‘revisions’ in the supports list
   in wp-knowledgebase/articles/kbe_articles.php file in the extension. For example,
   change:
 * `
    'supports' => array('title','editor','thumbnail','comments','tags'),
 * to
    ` 'supports' => array('title','editor','thumbnail','comments','tags','revisions'),
 * A quick test shows that enabling this in the custom post type in the extenstion
   works correctly, tracking revisions as with the default post type.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Baskerville] INfinite Scroll for Baskerville?](https://wordpress.org/support/topic/infinite-scroll-for-baskerville/)
 *  [ryanlerch](https://wordpress.org/support/users/ryanlerch/)
 * (@ryanlerch)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/infinite-scroll-for-baskerville/#post-5704502)
 * I followed the directions to add the infinite scroll, but it does not seem to
   be working. This is what I added in an attempt to make it work:
 *     ```
       function baskerville_setup() {
   
       	// Automatic feed
       	add_theme_support( 'automatic-feed-links' );
       +
       +	// infinite scroll
       +	add_theme_support( 'infinite-scroll', array(
       +	'container' => 'content',
       +	) );
   
       	// Post thumbnails
       	add_theme_support( 'post-thumbnails' );
       	add_image_size( 'post-image', 945, 9999 );
       	add_image_size( 'post-thumbnail', 600, 9999 );
       ```
   
 * But it is not working on the main page (the masonry layout of posts). When I 
   have set this up on other themes, adding this code caused the nav at the bottom
   of the posts (Older/Newer posts) disappears, but that doesnt seem to be happening(
   as well as jetpack infinite scroll not working)
 * Does Baskerville use a different way of rendering these post items that i need
   to plug into the “render” parameter of the infinite scroll feature?

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