How reorder post tags taxonomy in the non-alphabetical custom order and save it in the Block Editor

To reorder post tags taxonomy in a non-alphabetical custom order and save it in the Block Editor To achieve results use a combination of custom code. // Custom function to fetch tags in custom order function custom_get_tags($post_id) { $tags = get_the_tags($post_id); // Modify $tags array to reorder based on custom order // Your custom ordering … Read more

List of published post dates only outputting one date

you are overwriting the $testlist variable in each iteration of the loop. You need to concatenate each date to $testlist instead. please try to fetch all posts from the past year and create a js array containing their dates and make sure to call the test() function where you want this script to be executed … Read more

wp-admin/admin-ajax.php 400 Bad request (chrome console)

To simplify your process and prevent redundant conditional checks just stack the two actions on top of each other. wp_ajax_ runs for authenticated users and thus does the conditional check of is_user_logged_in() anyway. wp_ajax_nopriv_ does the same thing, but looks for unauthenticated users. The actions themselves run the conditions anyway, so you needn’t run it … Read more