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 class="gmail_quote"><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>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>