# code-snippets/3.10.2/js/services/settings/screen-meta.ts

Code Snippets, version 3.10.2. 15 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.2/code/js/services/settings/screen-meta.ts
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.2/raw/js/services/settings/screen-meta.ts
- Modified: 2026-08-04T13:35:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.10.2/code/js/services/settings/screen-meta.ts#L10-L20`.

```typescript
/**
 * Relocate the WordPress Screen Options and Help tabs (and their panels)
 * from above the page content into the slot rendered directly below the
 * settings section subnavigation bar.
 */
export const relocateScreenMeta = () => {
	const slot = document.getElementById('snippets-screen-meta-slot')
	const meta = document.getElementById('screen-meta')
	const links = document.getElementById('screen-meta-links')

	if (slot && meta && links) {
		slot.append(meta, links)
	}
}

```
