I have set some custom field ‘artist’ and ‘song-name’ displaying like: Artist: <user input> Song Name: <user input> My question, how do you make the on artist and song...
I’ve just taken over a busy WordPress site that’s got ~800 posts so far. The site’s been around long enough that it was started up before post_thumbnails was available....
i know this might sound a bit weird, but what I’m trying to do is rather simple in mind but may be technically difficult. I’m running small contests on...
I’m asking regarding the ACF plugin (Advanced Custom Fields) I’m working on creating a category group that will add custom fields to the category pages. These are the fields:...
I’m using ACF to output images in an image carousel called Flickity. Flickity supports image srcset with lazy loading. Here’s my basic ACF markup which uses wp_get_attachment_image: <?php $image...
I’ve searched around a bit, and I’m having trouble finding an answer to this question. What I’m trying to do is automatically fill a custom field when a post...
I have an interesting problem I am trying to solve. Here is my situations: I have create a custom post type for “events”. For each event post I require...
I am using this following code in my functions file to hide and add some custom columns to my post-edit screen in wp-admin. I am now trying to get...
I’ve added a custom field to users profile using the following code: /*** Adding extra field to get the the user who creates the another user during ADD NEW...
I have created a metabox : function drama_description_metabox_markup() { global $post; $drama_description_metabox_markup = get_post_meta( $post->ID, 'drama_description', true ); ?> <div> <label for="meta-box-text">Description</label> <textarea name="drama_description" style="width: 100%"><?php if ($drama_description_metabox_markup) {...