<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[12350] trunk: Allow registering post image support per post type.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12350">12350</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2009-12-09 15:39:20 +0000 (Wed, 09 Dec 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Allow registering post image support per post type. fixes <a href="http://trac.wordpress.org/ticket/11364">#11364</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditformadvancedphp">trunk/wp-admin/edit-form-advanced.php</a></li>
<li><a href="#trunkwpadmineditpageformphp">trunk/wp-admin/edit-page-form.php</a></li>
<li><a href="#trunkwpadminincludesmediaphp">trunk/wp-admin/includes/media.php</a></li>
<li><a href="#trunkwpincludesthemephp">trunk/wp-includes/theme.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditformadvancedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-form-advanced.php (12349 => 12350)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-form-advanced.php        2009-12-09 12:24:45 UTC (rev 12349)
+++ trunk/wp-admin/edit-form-advanced.php        2009-12-09 15:39:20 UTC (rev 12350)
</span><span class="lines">@@ -98,7 +98,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'post', 'side', 'core');
</span><del>-if ( current_theme_supports( 'post-images' ) )
</del><ins>+if ( current_theme_supports( 'post-images', 'post' ) )
</ins><span class="cx">         add_meta_box('postimagediv', __('Post Image'), 'post_image_meta_box', 'post', 'side', 'low');
</span><span class="cx"> add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'post', 'normal', 'core');
</span><span class="cx"> add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', 'post', 'normal', 'core');
</span></span></pre></div>
<a id="trunkwpadmineditpageformphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-page-form.php (12349 => 12350)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-page-form.php        2009-12-09 12:24:45 UTC (rev 12349)
+++ trunk/wp-admin/edit-page-form.php        2009-12-09 15:39:20 UTC (rev 12350)
</span><span class="lines">@@ -80,7 +80,7 @@
</span><span class="cx"> add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'page', 'normal', 'core');
</span><span class="cx"> add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'page', 'normal', 'core');
</span><span class="cx"> add_meta_box('slugdiv', __('Page Slug'), 'post_slug_meta_box', 'page', 'normal', 'core');
</span><del>-if ( current_theme_supports( 'post-images' ) )
</del><ins>+if ( current_theme_supports( 'post-images', 'page' ) )
</ins><span class="cx">         add_meta_box('postimagediv', __('Page Image'), 'post_image_meta_box', 'page', 'side', 'low');
</span><span class="cx"> 
</span><span class="cx"> $authors = get_editable_user_ids( $current_user-&gt;id, true, 'page' ); // TODO: ROLE SYSTEM
</span></span></pre></div>
<a id="trunkwpadminincludesmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/media.php (12349 => 12350)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/media.php        2009-12-09 12:24:45 UTC (rev 12349)
+++ trunk/wp-admin/includes/media.php        2009-12-09 15:39:20 UTC (rev 12350)
</span><span class="lines">@@ -1239,7 +1239,7 @@
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         $thumbnail = '';
</span><del>-        if ( 'image' == $type &amp;&amp; current_theme_supports( 'post-images' ) &amp;&amp; get_post_image_id($_GET['post_id']) != $attachment_id )
</del><ins>+        if ( 'image' == $type &amp;&amp; isset($_GET['post_id']) &amp;&amp; current_theme_supports( 'post-images', get_post_type($_GET['post_id']) ) &amp;&amp; get_post_image_id($_GET['post_id']) != $attachment_id )
</ins><span class="cx">                 $thumbnail = &quot;&lt;a class='wp-post-thumbnail' href='#' onclick='WPSetAsThumbnail(\&quot;$attachment_id\&quot;);return false;'&gt;&quot; . esc_html__( &quot;Use as post image&quot; ) . &quot;&lt;/a&gt;&quot;;
</span><span class="cx"> 
</span><span class="cx">         if ( ( $send || $thumbnail || $delete ) &amp;&amp; !isset($form_fields['buttons']) )
</span></span></pre></div>
<a id="trunkwpincludesthemephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme.php (12349 => 12350)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme.php        2009-12-09 12:24:45 UTC (rev 12349)
+++ trunk/wp-includes/theme.php        2009-12-09 15:39:20 UTC (rev 12350)
</span><span class="lines">@@ -1320,9 +1320,14 @@
</span><span class="cx">  */
</span><span class="cx"> function add_theme_support( $feature ) {
</span><span class="cx">         global $_wp_theme_features;
</span><ins>+
</ins><span class="cx">         if ( 'post-thumbnails' == $feature ) // This was changed during 2.9 beta. I'll be nice and not break things.
</span><span class="cx">                 $feature = 'post-images';
</span><del>-        $_wp_theme_features[$feature] = true;
</del><ins>+
+        if ( func_num_args() == 1 )
+                $_wp_theme_features[$feature] = true;
+        else
+                $_wp_theme_features[$feature] = array_slice( func_get_args(), 1 );
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><span class="lines">@@ -1336,7 +1341,33 @@
</span><span class="cx"> 
</span><span class="cx"> function current_theme_supports( $feature ) {
</span><span class="cx">         global $_wp_theme_features;
</span><del>-        return ( isset( $_wp_theme_features[$feature] ) &amp;&amp; $_wp_theme_features[$feature] );
</del><ins>+
+        if ( !isset( $_wp_theme_features[$feature] ) )
+                return false;
+
+        // If no args passed then no extra checks need be performed
+        if ( func_num_args() &lt;= 1 )
+                return true;
+
+        $args = array_slice( func_get_args(), 1 );
+
+        // @todo Allow pluggable arg checking
+        switch ( $feature ) {
+                case 'post-images':
+                        // post-thumbnails can be registered for only certain content/post types by passing
+                        // an array of types to add_theme_support().  If no array was passed, then
+                        // any type is accepted
+                        if ( true === $_wp_theme_features[$feature] )  // Registered for all types
+                                return true;
+                        $content_type = $args[0];
+                        if ( in_array($content_type, $_wp_theme_features[$feature][0]) )
+                                return true;
+                        else
+                                return false;
+                        break;
+        }
+
+        return true;
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span></span></pre>
</div>
</div>

</body>
</html>