skip to Main Content

WordPress – ACF creating multi field, custom field type

I have created custom field type following this documentation https://www.advancedcustomfields.com/resources/creating-a-new-field-type/ and I have below fields: YouTube ID(input type text) Submit Button(input type submit) Title(input type text) Description(input type text) Thumbnail URL(input type text) Upload Date(input type text) Duration minute(input type…

VIEW QUESTION

MySQL WordPress database: How to find users who have not posted since a number of weeks, as I can't use max(date) in select clause?

Here is what I am at right now, but it does not return anything select wp_users.user_nicename, wp_users.user_email, max(yearweek(wp_wpforo_posts.created)) as w from LeBearCNC.wp_users, wp_wpforo_posts where wp_users.ID = wp_wpforo_posts.userid and not exists (select max(yearweek(wp_wpforo_posts.created)) where wp_users.ID = wp_wpforo_posts.userid) /*and yearweek(current_date()) - 12…

VIEW QUESTION

WordPress Rest Api Meta description

I am sending posts with wordpress rest api. But I can't send meta description. where did i go wrong. wp_api_url = "https://xxxxx.com/wp-json/wp/v2/posts" wp_auth_token = "xxxxxxx" import requests meta = { "description": "test description", "keywords": "test keywords", "tags": "test Tag" }…

VIEW QUESTION
Back To Top
Search