=== AddonLogic Skip-to-Content Link ===
Contributors: snehalpancholi
Tags: accessibility, skip-link, keyboard, wcag, screen-reader
Requires at least: 6.0
Tested up to: 6.7
Stable tag: 1.0.0
Requires PHP: 8.1
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Injects a visually-hidden skip-to-content link that appears on keyboard focus, letting keyboard users bypass repetitive navigation.

== Description ==

AddonLogic Skip-to-Content Link is a focused accessibility plugin that satisfies WCAG 2.4.1 (Bypass Blocks). It injects a visually-hidden anchor at the very top of the page body. When a keyboard user presses Tab as their first action, the link becomes visible and they can activate it to jump directly to the main content area.

**Features:**

* Single lightweight CSS injection — no JavaScript required for the core function
* Configurable link text, target element ID, and colours
* Optional secondary skip-to-navigation link
* Works with any theme via the `wp_body_open` action hook
* Admin settings for full customisation

== Installation ==

1. Upload the `skip-to-content-link` folder to `/wp-content/plugins/`
2. Activate via **Plugins** in the WordPress admin
3. Go to **Settings → Skip to Content** to configure the target element ID to match your theme's main content wrapper

== Frequently Asked Questions ==

= My theme doesn't show the link when I press Tab. =
Your theme must call `wp_body_open()` in its `header.php` immediately after the opening `<body>` tag. If it does not, open a support ticket with your theme author.

= What id should I use for the target? =
Inspect your theme's HTML. Look for the `<main>` or a `<div id="...">` wrapping your post content. Common values: `content`, `main`, `primary`.

== Changelog ==

= 1.0.0 =
* Initial release
