Tagged Questions
1
vote
1answer
22 views
How to use Yoast SEO backend in english even if WPLANG variable is not english?
I added this code to my functions.php file
add_filter('locale', 'wpse27056_setLocale');
function wpse27056_setLocale($locale) {
if ( is_admin() ) {
return 'en_US';
}
return ...
2
votes
1answer
2k views
Best way to filter featured image text for a custom post type?
I am trying to change the "Set featured image", "Remove featured image", and "Use as featured image" text links of a custom post type for my plugin Meteor Slides.
I found the ...