How to modify quicksand_entry_meta
-
I am trying to modify quicksand_entry_meta. I located the function in template-tags.php. I want to remove the date from displaying on the post so I removed the following from the function:
// date
if (in_array(‘date’, $onlyShowThisMetaInfo) && in_array(get_post_type(), array(‘post’, ‘attachment’))) {
$quicksand_entry_date = get_quicksand_entry_date();
echo wp_kses_post($quicksand_entry_date);
}However, this is not working. The date still shows. I looked through other files to figure out where to modify the function but could find nothing.
What am I doing wrong? Please advise where I modify this function.
Doing this in a child theme btw.
Thanks,
Darrin
- The topic ‘How to modify quicksand_entry_meta’ is closed to new replies.