MattBoutet
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF to WP-API] Filter not Filtering.I just stumbled across this, and it took a bit of tweaking, figured I’d share what I had to do to get it working:
note the change to
register_rest_field
–register_api_field
is deprecated.add_action( 'rest_api_init', 'post_meta_register' ); function post_meta_register() { register_rest_field( 'post', 'ACF_FIELD_NAME_HERE', array( 'get_callback' => 'get_acf_post_meta', 'update_callback' => null, 'schema' => null, ) ); } function get_acf_post_meta( $object, $field_name, $request ) { return get_post_meta( $object[ 'id' ], $field_name, true ); } add_filter( 'rest_query_vars', 'allow_meta' ); function allow_meta( $valid_vars ) { $valid_vars = array_merge( $valid_vars, array( 'meta_key', 'meta_value' ) ); return $valid_vars; }
Edit: I moved all of this out of
functions.php
and into a standalone plugin file so that I (hopefully) won’t have problems with future updates to WordPress. If you want to put this code intofunctions.php
you may need to editwp-settings.php
to requireplugin.php
beforefunctions.php
so thatadd_action(0
andadd_filter()
are defined before you try to use them.Forum: Fixing WordPress
In reply to: Admin bar missing and add/edit Posts gives Error 324Fix it:
Had to set
ini_set(‘zend.ze1_compatibility_mode’, 0);
in the wp-config.php
Thanks to martijnh for his post at https://www.ads-software.com/support/topic/clean-33-install-no-widgets-admin-bar-error?replies=4
Forum: Installing WordPress
In reply to: Multiple problems with a clean install.Fix it:
Had to set
ini_set(‘zend.ze1_compatibility_mode’, 0);
in the wp-config.php
Thanks to martijnh for his post at https://www.ads-software.com/support/topic/clean-33-install-no-widgets-admin-bar-error?replies=4
Forum: Installing WordPress
In reply to: Multiple problems with a clean install.It doesn’t seem to be a php timeout. Everything’s running pretty quickly.
I’m stumped.
Forum: Installing WordPress
In reply to: Multiple problems with a clean install.Another possible hint:
Media uploads work fine, adding/editing pages and comments works fine, changing settings is OK too.
There’s something unique about the way posts are handled that’s causing the problems I’m seeing, I’m just not sure what it is.
Forum: Installing WordPress
In reply to: Multiple problems with a clean install.esmi,
I have tried using IE/Firefox, and have the same issues there.
Any thought’s on where to look for config errors? PHP in general is working fine on the server, though I’m not certain there are any other wordpress installs on there right now, so it could be a PHP/Wordpress peculiarity I guess, but I don’t really know where to start looking.
Thanks.
Forum: Installing WordPress
In reply to: Multiple problems with a clean install.Thanks for the reply esmi. I should’ve specified in the original post that this is the second install (from a completely new download, new directory structure, new db) I’ve done on this host, both showed the same exact issues. Also, I’m not really seeing anything helpful in the error logs.
Any other thoughts?