<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Featured Image ALT text</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 11:16:40 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23041</guid>
					<title><![CDATA[Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23041</link>
					<pubDate>Fri, 02 Oct 2015 13:41:31 +0000</pubDate>
					<dc:creator>3Dprintwise</dc:creator>

					<description>
						<![CDATA[
						<p>The featured image on a post or portfolio item does not place the alt text in the theme template. Same on general archive and portfolio pages. </p>
<p>If there is a code change needed in the theme template files &#8211; please let me know.  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23042</guid>
					<title><![CDATA[Reply To: Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23042</link>
					<pubDate>Fri, 02 Oct 2015 13:54:06 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>This is on purpose, feel free to add them to your Child theme if you wish. Let me know if you need help doing it. <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23043</guid>
					<title><![CDATA[Reply To: Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23043</link>
					<pubDate>Fri, 02 Oct 2015 13:56:28 +0000</pubDate>
					<dc:creator>3Dprintwise</dc:creator>

					<description>
						<![CDATA[
						<p>Yes &#8211; please give me the code to enter on the single and archive theme files. On the portfolio it is actually working (my apologies)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23044</guid>
					<title><![CDATA[Reply To: Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23044</link>
					<pubDate>Fri, 02 Oct 2015 14:45:42 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Sure, replace in your index.php:</p>
<pre><code>			&lt;?php 	// Do we use shortened Featured imgs
					$img_height = (ot_get_option(&#039;blog_full_img_height&#039;,&#039;off&#039;) == &#039;off&#039;) ? &quot;boc_thin&quot; : &quot;full&quot;;
			
					// IF Post type is Standard (false) 	
					if(function_exists( &#039;get_post_format&#039; ) &amp;&amp; get_post_format( $post-&gt;ID ) != &#039;gallery&#039; &amp;&amp; get_post_format( $post-&gt;ID ) != &#039;video&#039; &amp;&amp; has_post_thumbnail()) { 
						$attachment_image = wp_get_attachment_image_src(get_post_thumbnail_id($post-&gt;ID), $img_height);
			?&gt;			
						&lt;div class=&quot;pic&quot;&gt;
							&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr($post-&gt;post_title); ?&gt;&quot;&gt;
								&lt;img src=&quot;&lt;?php echo esc_url($attachment_image[0]); ?&gt;&quot;/&gt;&lt;div class=&quot;img_overlay&quot;&gt;&lt;span class=&quot;hover_icon icon_plus&quot;&gt;&lt;/span&gt;&lt;/div&gt;
							&lt;/a&gt;
						&lt;/div&gt;
			&lt;?php 	} // IF Post type is Standard :: END ?&gt;</code></pre>
<p>with</p>
<pre><code>&lt;?php 	// Do we use shortened Featured imgs
		$img_height = (ot_get_option(&#039;blog_full_img_height&#039;,&#039;off&#039;) == &#039;off&#039;) ? &quot;boc_thin&quot; : &quot;full&quot;;

		// IF Post type is Standard (false) 	
		if(function_exists( &#039;get_post_format&#039; ) &amp;&amp; get_post_format( $post-&gt;ID ) != &#039;gallery&#039; &amp;&amp; get_post_format( $post-&gt;ID ) != &#039;video&#039; &amp;&amp; has_post_thumbnail()) { 
			$attachment_image = wp_get_attachment_image_src(get_post_thumbnail_id($post-&gt;ID), $img_height);
			$att_img_alt = get_post_meta(get_post_thumbnail_id($post-&gt;ID), &#039;_wp_attachment_image_alt&#039;, true);
?&gt;			
			&lt;div class=&quot;pic&quot;&gt;
				&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr($post-&gt;post_title); ?&gt;&quot;&gt;
					&lt;img src=&quot;&lt;?php echo esc_url($attachment_image[0]); ?&gt;&quot; alt=&quot;&lt;?php echo $att_img_alt;?&gt;&quot;/&gt;&lt;div class=&quot;img_overlay&quot;&gt;&lt;span class=&quot;hover_icon icon_plus&quot;&gt;&lt;/span&gt;&lt;/div&gt;
				&lt;/a&gt;
			&lt;/div&gt;
&lt;?php 	} // IF Post type is Standard :: END ?&gt;
</code></pre>
<p>You can add it analogous to this in your single.php</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23045</guid>
					<title><![CDATA[Reply To: Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23045</link>
					<pubDate>Fri, 02 Oct 2015 15:21:10 +0000</pubDate>
					<dc:creator>3Dprintwise</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks &#8211; a very nice theme indeed</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23050</guid>
					<title><![CDATA[Reply To: Featured Image ALT text]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/featured-image-alt-text/#post-23050</link>
					<pubDate>Fri, 02 Oct 2015 18:59:30 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks a lot for your feedback, please give us a rating to support us at your Downloads section in Themeforest, it only takes a second! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

