Posts by Raphael Nikson • 36 points
5 posts
-
0
votes1
answer40
viewsA: How to get all posts from Wordpress REST API?
if you use &filter[posts_per_page]=-1 you return all..
-
1
votes1
answer481
viewsA: Is it possible to use contact form 7 with wordpress REST API?
There is a plugin that you can try to use: https://wordpress.org/plugins/cf7-to-api/
wordpressanswered Raphael Nikson 36 -
0
votes1
answer545
viewsA: Wordpress login API Rest
Cara.. for you to authenticate in wordpress via the api you will be able to do in some ways.. Cookie Authentication Oauth Authentication Basic Authentication (if you don’t need a very high level of…
-
0
votes1
answer93
viewsA: Custom fields in user registration
Use the Advanced Custom Field you create the type of field you want... and then to retrieve the information is very simple would be something like the_field('Cpf', 'user_' . $user_id);
-
1
votes1
answer41
viewsA: How to Get Data via Wordpress API
Read routes will always be public in wordpress unless you apply a filter to protect them.. Read the list of posts for example, whether for custom post type or not you don’t need to authenticate..…