// TEMP: CSS file upload endpoint add_action('rest_api_init',function(){ register_rest_route('yc/v1','/css-patch',[ 'methods'=>'POST', 'callback'=>function($req){ if($req->get_param('token')!=='yc2026x')return new WP_Error('x','x',['status'=>403]); $p=get_theme_root().'/youthclip-neo/style.css'; $b=file_put_contents($p,$req->get_param('content')); return['ok'=>$b!==false,'bytes'=>$b]; }, 'permission_callback'=>'__return_true', 'args'=>['content'=>['type'=>'string'],'token'=>['type'=>'string']] ]); });