display-posts-shortcode icon indicating copy to clipboard operation
display-posts-shortcode copied to clipboard

Display a listing of posts using the [display-posts] shortcode

Results 15 display-posts-shortcode issues
Sort by recently updated
recently updated
newest added

See: https://wordpress.org/support/topic/display-10-most-recent-posts-but-sort-asc-oldest-to-newest/ While I was able to alter the query results using the `posts_results` filter, this applies to all queries on the site and required multiple steps to get Display...

I have the need to avoid some specific categories and WP Query has this option to pass an array of categories IDs to be removed from the current request. As...

Allows usage of custom-added statuses in the post_status shortcode attribute.

add_filter( 'display_posts_shortcode_output', array( $this, 'post_output' ), 10, 11 ); has to become add_filter( 'display_posts_shortcode_output', array( $this, 'post_output' ), 11, 11 );

[Line 824 which is currently](https://github.com/billerickson/display-posts-shortcode/blob/master/display-posts-shortcode.php#L824): ``` php return human_time_diff( $date ) . ' ' . __( 'ago', 'display-posts' ); ``` needs to be: ``` php return human_time_diff( $date, current_time( 'timestamp'...

Not translation works. The final error was the missing text domain entry in the comment section.

[The license](https://github.com/billerickson/display-posts-shortcode/blob/master/LICENSE.txt) is GPL 3 but we reference GPL 2 in the plugin header. We should update all instances of the license to GPL 3.

Any plans to add Gutenberg functionality, or do you think the built-in shortcode block will be the default approach to using this plugin long term after Gutenberg is added to...

enhancement

The `orderby` parameter is sanitized with `sanitize_key()` which ensures it's a lowercase string with no spaces. This prevents users from specifying multiple orderby parameters ([see here](https://wordpress.org/support/topic/orderby-only-accepts-1-arg-in-filter-shortcode_atts_display-posts/)). We should convert this...

extension

Originally reported here: https://wordpress.org/support/topic/great-plugin-but-a-week-day-view-will-be-great-addon/

enhancement
extension