On Sun, Dec 23, 2012 at 6:03 PM, Bradly Swart <span dir="ltr"><<a href="mailto:brad8711@gmail.com" target="_blank">brad8711@gmail.com</a>></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'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'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'd be a very short plugin:</div>
<div><br></div><div>add_filter( 'is_protected_meta', function( $protected, $meta_key, $meta_type ) {</div><div> if ( 'post' == $meta_type && '_some_key' == $meta_key )</div><div> return false;</div>
<div> return $protected;</div><div>}, 10, 3 );</div></div>