<div dir="ltr">Right, looks like I have some work ahead of me :)<br><br>Thanks for the pointers guys :)</div><div class="gmail_extra"><br clear="all"><div><div><div>Bradly Swart</div><div><br></div><div>Mobile: +61447068962</div>
<div>Skype: bradly.swart</div><div>Twitter: <a href="http://twitter.com/brad8711" target="_blank">@brad8711</a></div></div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">linkedIn:</span><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> </span><font color="#222222" face="arial, sans-serif"><a href="http://za.linkedin.com/in/bradlyswart" target="_blank">http://za.linkedin.com/in/bradlyswart</a></font></div>
</div>
<br><br><div class="gmail_quote">On Mon, Dec 24, 2012 at 10:08 AM, Andrew Nacin <span dir="ltr">&lt;<a href="mailto:wp@andrewnacin.com" target="_blank">wp@andrewnacin.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Sun, Dec 23, 2012 at 6:03 PM, Bradly Swart <span dir="ltr">&lt;<a href="mailto:brad8711@gmail.com" target="_blank">brad8711@gmail.com</a>&gt;</span> wrote:<br></div><div class="gmail_quote"><div class="im">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr">Well, that being said I&#39;m kind of at the point of just writing to the table manually through MySQL connection.<br><br>@Andrew, how can I add that filter to a xmlrpc request ?</div></blockquote><div><br>


</div></div><div>You can&#39;t. The whole point is to prevent an XML-RPC client from modify content that a user may not be allowed to modify.</div><div><br></div><div>You can, however, just add a plugin. It&#39;d be a very short plugin:</div>


<div><br></div><div>add_filter( &#39;is_protected_meta&#39;, function( $protected, $meta_key, $meta_type ) {</div><div>    if ( &#39;post&#39; == $meta_type &amp;&amp; &#39;_some_key&#39; == $meta_key )</div><div>        return false;</div>


<div>    return $protected;</div><div>}, 10, 3 );</div></div>
<br>_______________________________________________<br>
wp-xmlrpc mailing list<br>
<a href="mailto:wp-xmlrpc@lists.automattic.com">wp-xmlrpc@lists.automattic.com</a><br>
<a href="http://lists.automattic.com/mailman/listinfo/wp-xmlrpc" target="_blank">http://lists.automattic.com/mailman/listinfo/wp-xmlrpc</a><br>
<br></blockquote></div><br></div>