We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can send data and fill simple custom fields. But it does not work with ACF repeater fields. It does not get value at all.
using (var client = new WordPressClient(new WordPressSiteConfig { BaseUrl = "http://example.com", Username = "username", Password = "pass", BlogId = 1 })) { var customFields = new[] { new CustomField { Key = "field_586c1a9332541", Value = "google.com"; } }; var post = new Post { PostType = "video", Title = "title", Content = "description", PublishDateTime = DateTime.Now, Status = "draft", CustomFields = customFields }; var id = client.NewPost(post); }
Is it possible to work with repeater fields by WordPressSharp ?!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can send data and fill simple custom fields. But it does not work with ACF repeater fields. It does not get value at all.
Is it possible to work with repeater fields by WordPressSharp ?!
The text was updated successfully, but these errors were encountered: