Posts by Everaldo Matias • 1 point
2 posts
- 
		0 votes1 answer18 viewsA: SQL: How to copy the value of a meta_key into an array in another meta_key?One way to do this, perhaps not the most efficient, but one that would meet the demand, would be.. First of all, have backup of everything! add a function to the file functions.php of its theme,… 
- 
		0 votes1 answer28 viewsA: Highlighted image of Wordpress does not appear in AdminYou used the hook after_setup_theme to add thumbnails support? function theme_setup(){ /** post thumbnail **/ add_theme_support( 'post-thumbnails' ); } add_action( 'after_setup_theme', 'theme_setup'…