Title: rfkat's Replies | WordPress.org

---

# rfkat

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Archivist - Custom Archive Templates] Styling the pagination?](https://wordpress.org/support/topic/styling-the-pagination-2/)
 *  Thread Starter [rfkat](https://wordpress.org/support/users/rfkat/)
 * (@rfkat)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/styling-the-pagination-2/#post-14819012)
 * Thanks for the quick reply, [@eteubert](https://wordpress.org/support/users/eteubert/)–
   I needed to style the li elements, so selecting the “current page” li is sadly
   not possible.
 * However, since you’re no longer maintaining this, I’ve now just modified display_pagination_controls()
   according to my needs, replacing the lists with simple links and spans. In case
   somebody else stumbles across this issue, hre’s the modification:
 *     ```
       <div class="archivist-pagination pagination nav-links">
       <?php for ($i = 1; $i <= $total_pages; $i++): ?>
                       <?php if ($current_page === $i): ?>
                               <span
                                       class="page-numbers current" aria-current="page"
                                       data-page="<?php echo esc_attr($i); ?>">
                                       <?php echo $i; ?>
                               </span>
                       <?php else: ?>
                               <a
                                       href="<?php echo esc_attr(add_query_arg('archivist_page', $i, $current_url)); ?>"
                                       class="archivist-pagination-link page-numbers"
                                       data-page="<?php echo esc_attr($i); ?>">
                                       <?php echo $i; ?>
                               </a>
                       <?php endif ?>
       <?php endfor ?>
       </div>
       ```
   
    -  This reply was modified 4 years, 11 months ago by [rfkat](https://wordpress.org/support/users/rfkat/).
    -  This reply was modified 4 years, 11 months ago by [rfkat](https://wordpress.org/support/users/rfkat/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi-column Tag Map] How to display a single category only, from nested categories?](https://wordpress.org/support/topic/how-to-display-single-category-from-nested-categories/)
 *  Thread Starter [rfkat](https://wordpress.org/support/users/rfkat/)
 * (@rfkat)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/how-to-display-single-category-from-nested-categories/#post-14780063)
 * That’s my current workaround, but I’m really a fan of DRY. I’d like to avoid 
   maintaining the same text in two places – sync glitches are almost guaranteed.
 * I’ve read through a few messages here on the forum and found similar challenges
   with respect to rendering nested categories.
 * Need to think a little more about how to solve this. Thanks for your feedback!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi-column Tag Map] How to display descriptions for categories?](https://wordpress.org/support/topic/how-to-display-descriptions-for-categories/)
 *  Thread Starter [rfkat](https://wordpress.org/support/users/rfkat/)
 * (@rfkat)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/how-to-display-descriptions-for-categories/#post-14779547)
 * [@tugbucket](https://wordpress.org/support/users/tugbucket/) Thank you for writing
   and maintaining it. I’m exploring all the options right now, really excellent!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi-column Tag Map] How to display descriptions for categories?](https://wordpress.org/support/topic/how-to-display-descriptions-for-categories/)
 *  Thread Starter [rfkat](https://wordpress.org/support/users/rfkat/)
 * (@rfkat)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/how-to-display-descriptions-for-categories/#post-14779378)
 * Yikes, typo: `descriptions="yes"`, and everything works… 🤦
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autolinks Manager - SEO Auto Linker] Autolinks in RSS feeds?](https://wordpress.org/support/topic/autolinks-in-rss-feeds/)
 *  Thread Starter [rfkat](https://wordpress.org/support/users/rfkat/)
 * (@rfkat)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/autolinks-in-rss-feeds/#post-14720100)
 * That will definitely close a gap – Thanks for considering this, and have a great
   weekend!
 * Rolf

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