Add Alt and Title to images
-
My function to add alt and title attributes to the avatar image no longer works after activating the plugin.
function replace_content($text) { $alt = get_the_author_meta( 'display_name' ); $text = str_replace('alt=\'\'', 'alt=\''.$alt.'\' title=\''.$alt.'\'',$text); return $text; } add_filter('get_avatar','replace_content');
Any idea how I can add title and alt to uploaded avatar images?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add Alt and Title to images’ is closed to new replies.