Media Credit does not function in WP3.5
-
Plugin will not allow a picture to be placed in a post with the newest version of WordPress 3.5. Will there be an update to work with WP3.5?
After disabling it, things works ok when adding new media to a post. But then it leaves the visible code on the post because of this.
You can remove that but placing a code in your themes fuction.php file located at https://www.scottbressler.com/blog/plugins/media-credit/
Or
// Start Remove Media Credit function ignore_media_credit_shortcode( $atts, $content = null ) { return $content; } global $shortcode_tags; if ( !array_key_exists( 'media-credit', $shortcode_tags ) ) add_shortcode('media-credit', 'ignore_media_credit_shortcode' ); // End Remove Media Credit
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Media Credit does not function in WP3.5’ is closed to new replies.