Tengo problemas para entender cuándo necesitas usar wp_register_script(). Actualmente, solo uso algo como: add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ) ); function enqueue() { $handle = 'some-handle'; $js = 'http://example.com/my.js'; wp_register_script( $handle, $js );...