<tr>
remove()を使用して、レンダリングされたページの1つの行を削除する必要があります。<label>
名前をターゲットにすることによって。 以下のマークアップを参照してください。
<tr>
このテーブルには、残す必要のある他の行があります。テキストラベル名「Website」または?のいずれかでテーブルの1行をターゲットにすることは可能label for="url"
ですか?
つまり
jQuery(document).ready(function( $ ){
$("target the <tr> by label name Website or "url" ").remove();
});
HTMLマークアップ:
<tr>
<th><label for="url">Website</label></th>
<td><input type="text" name="url" id="url" value="" class="regular-text code" /></td>
</tr>