Query posts by custom taxonomy slug in WP REST API?

For the moment, I’ve created this workaround here thanks to this post here. It’s basically the same, just a little more general. Assuming a custom post type with the your_custom_post_type slug, and three custom taxonomies with these names here: first_custom_taxonomy_name second_custom_taxonomy_name third_custom_taxonomy_name The code below enables to query via their slug value if you query … Read more

Changing WP_MEMORY_LIMIT doesn’t affect actual memory limit

So you’ve tried setting the WP_MEMORY_LIMIT variable in the wp-config.php file, but have you tried .user.ini or .php.ini? Create one of those files (yes, with the period in front) and then use: memory_limit=30M Or whatever value you’re looking for. By default, WordPress is set to 40mb for a single installation, and 64mb for a multisite … Read more