Skip to content

Instantly share code, notes, and snippets.

@SirLouen
Created December 29, 2025 01:02
Show Gist options
  • Select an option

  • Save SirLouen/f22274ad3aa8e239e7a6e2a2d8404b18 to your computer and use it in GitHub Desktop.

Select an option

Save SirLouen/f22274ad3aa8e239e7a6e2a2d8404b18 to your computer and use it in GitHub Desktop.
Test URL Field Plugin
<?php
/*
Plugin Name: Test URL Field Plugin
*/
defined( 'ABSPATH' ) || exit;
add_action( 'init', function() {
register_meta( 'post', 'test_url_field', array(
'show_in_rest' => true,
'single' => true,
'type' => 'string',
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment