| 1 |
/** |
| 2 |
* Relocate the WordPress Screen Options and Help tabs (and their panels) |
| 3 |
* from above the page content into the slot rendered directly below the |
| 4 |
* settings section subnavigation bar. |
| 5 |
*/ |
| 6 |
export const relocateScreenMeta = () => { |
| 7 |
const slot = document.getElementById('snippets-screen-meta-slot') |
| 8 |
const meta = document.getElementById('screen-meta') |
| 9 |
const links = document.getElementById('screen-meta-links') |
| 10 |
|
| 11 |
if (slot && meta && links) { |
| 12 |
slot.append(meta, links) |
| 13 |
} |
| 14 |
} |
| 15 |
|