Warning: Undefined property: WP_Error::$name in /srv/users/nsp-code/apps/nsp-code/public/wp-content/themes/apto/templates/parts/category-header.php on line 15

Warning: Undefined property: WP_Error::$name in /srv/users/nsp-code/apps/nsp-code/public/wp-content/themes/apto/templates/parts/category-header.php on line 18

Grid sorting appearance customization

The APTO Grid view gives you a thumbnail-driven re-order interface — and with a small, maintainable customization you can make that admin grid match your front-end grid exactly. This guide explains how to implement grid-style changes (where to place code, what to target, and best practices) while leaving the actual code snippet for your demonstration. […]

Grid Sorting – Visualize & Arrange Your Thumbnails Easily

The Grid sorting type in Advanced Post Types Order (APTO) brings a visual, thumbnail-driven approach to ordering content in the WordPress admin. Instead of a plain list, Grid outputs objects as a tiled gallery of thumbnails and titles — exactly the kind of interface that makes sense when your front-end displays posts, products or portfolio […]

Sample Usage

The Advanced Post Types Order plugin does all work for you when Autosort setting is turned ON, however in certain situations custom queries are required to be run along with Autosort turned OFF. Return feature post types objects, using the order set for the archive (all feature post type items): Return feature post types objects, […]

Get Adjacent Post

Used on single post permalink pages, this return the post type data to the previous/next post. This function must be used in The Loop. The default WordPress function for this is get_adjacent_post however this procedure is very restrictive with the custom order and the terms/taxonomies where to apply. An improved version is apto_get_adjacent_post function. This […]

Next Post Link

Being used mainly on single post template, this tag display a link to a next post relative to the current post, from a sort list. This tag must be used within the query loop. The default WordPress function used for next navigational link is next_post_link. This is very limited in functionality and there is no […]

Previous Post Link

Being used mainly on single post template, this tag display a link to a previous post relative to current post, from a sort list. This tag must be used within the query loop. The default WordPress function used for previous naivigational link is previous_post_link. This is very limited in functionality and there is no possibility […]

Identify the correct settings for a sort to apply on front side

For majority of front query a simple sort will be enough to maintain the order. Switching between the filtering under the blue arrow, allows to fast change the area where the order is required to be customised. Some of front queries also use a mix of taxonomies and / or post types which is not […]

How to sort posts automatically by a Last Name included in title

Sorting WordPress posts by last name is a technique that can significantly enhance content organization, especially when dealing with directories, team listings, or any content where authors or contributors are better identified by their surnames. This approach not only makes it easier for visitors to locate information but also adds a level of professionalism and […]