How do I link an image in my plugin so it displays on WordPress?
This line is your problem: $new_site_name = $site_name . ‘<sup>echo ‘<img src=”‘ . plugins_url( ‘images/wordpress.png’ ,”logo.jpg” ) . ‘” > ‘</sup>’; Here you’ve muddled up the quotes and put PHP code inside a string expecting it to still work. e.g. echo ‘ this is inside a quote:’ inside a quote ‘ . ‘; It doesn’t … Read more