Linux 软件免费装
Banner图

Accessible Reading

开发者 tessawatkinsllc
更新时间 2023年3月30日 23:06
捐献地址: 去捐款
PHP版本: 5.4 及以上
WordPress版本: 6.2
版权: GPLv2 or later
版权网址: 版权信息

标签

accessibility wcag accessible font size ada accommodation speed reading bionic reading neurodiversity legible reading bold font brain reading neurodivergent disability

下载

1.3.4 2.1.1

详情介绍:

Your brain reads faster than your eyes! We humans have an internal dictionary of learned words and reading the first few letters can be enough to recognize whole words. Bionic Reading® is a new method facilitating the reading process by guiding the eyes through text with artificial fixation points. As a result, the reader is only focusing on the highlighted initial letters and lets the bran center complete the word. In a digital world dominated by shallow forms of reading, Bionic Reading® aims to encourage more in-depth reading and understanding of written content. Learn More about Bionic Reading®. This WordPress plugin is not a product of Bionic Reading®. It was developed by an independent and disabled developer that wants to bring more accessibility to the digital space. This plugin uses the official Bionic Reading API to generate accessible text so an API key is needed after plugin activation. Free and paid plans are available.

安装:

There are three (3) ways to install my plugin: automatically, upload, or manually. Install Method 1: Automatic Installation Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser.
  1. Log in to your WordPress dashboard.
  2. Navigate to Plugins > Add New.
  3. Where it says “Keyword” in a dropdown, change it to “Author”
  4. In the search form, type “TessaWatkinsLLC” (results may begin populating as you type but my plugins will only show when the full name is there)
  5. Once you’ve found my plugin in the search results that appear, click the Install Now button and wait for the installation process to complete.
  6. Once the installation process is completed, click the Activate button to activate my plugin.
  7. After this plugin is activated, see below for additional instructions for setup.
Install Method 2: Upload via WordPress Admin This method involves is a little more involved. You don’t need to leave your web browser, but you’ll need to download and then upload the files yourself.
  1. Download my plugin from WordPress.org; it will be in the form of a zip file.
  2. Log in to your WordPress dashboard.
  3. Navigate to Plugins > Add New.
  4. Click the Upload Plugin button at the top of the screen.
  5. Select the zip file from your local file system that was downloaded in step 1.
  6. Click the Install Now button and wait for the installation process to complete.
  7. Once the installation process is completed, click the Activate button to activate my plugin.
  8. After this plugin is activated, see below for additional instructions for setup.
Install Method 3: Manual Installation This method is the most involved as it requires you to be familiar with the process of transferring files using an SFTP client.
  1. Download my plugin from WordPress.org; it will be in the form of a zip file.
  2. Unzip the contents; you should have a single folder named accessible-reading.
  3. Connect to your WordPress server with your favorite SFTP client.
  4. Copy folder from step 2 to the /wp-content/plugins/ folder in your WordPress directory. Once the folder and all of its files are there, installation is complete.
  5. Now log in to your WordPress dashboard.
  6. Navigate to Plugins > Installed Plugins. You should now see my plugin in your list.
  7. Click the Activate button under my plugin to activate it.
  8. After this plugin is installed and activated, see below for additional instructions for setup.
After Plugin Installation and Activation
  1. Visit Bionic Reading® on Rapid API to get an API key. Free and paid versions are available.
  2. Navigate to Tools > Accessible Reading to add the API key to your settings.
  3. Optionally modify the fixation and saccade to suit your preferences.
  4. Creating a new post or updating an existing one will generate the accessible content for that post. Once a post has accessible content, a toggle button will appear on the frontend for site visitors to use.

屏幕截图:

  • The frontend of the post page with the accessible reading button toggled off
  • Plugin settings screen

升级注意事项:

2.1.1 Bug fixes regarding the toggle button appearance settings and preview as well as the API request tracker.

常见问题:

Why do I need an API key?

This plugin uses the Bionic Reading® API to generate accessible text and it requires each user to have a unique API key.

I have an API key, how do I use it?

You can set the API key for the plugin in two ways. The first way is adding it in the plugin settings. While logged into WordPress, navigate to Tools > Accessible Reading and then under the Settings tab, you'll see a text field for API Key to copy/pase it into. Press the Save All Settings button at the bottom. The second way is defining the ACCESSIBLE_READING_API_KEY constant variable in your wp-config.php file and setting it's value to your API key. For multisite installations, this will set all of those sites to use the same API key. Example usage: define('ACCESSIBLE_READING_API_KEY','your-api-key-goes-here');

What is the accessible_reading shortcode and how do I use it?

The accessible_reading shortcode allows you to add accessible text with a toggle switch anywhere on your WordPress website. To ensure your shortcode's accessible content is automatically generated, a user with edit post capabilities must preview the page using the shortcode at least once while you have enough API requests for the day. To use it, simply wrap the text you want to make accessible with the shortcode while also adding an id attribute. For example: [accessible_reading id="foo"]This content will become accessible![/accessible_reading] This shortcode will also add the toggle switch to enable/disable the accessible content automatically, so if you're using it in multiple locations and want just one switch, set the hide_toggle attribute to 1 to disable it like this: [accessible_reading id="bar" hide_toggle="1"]This content will become accessible but <strong>without showing a toggle!</strong>[/accessible_reading] This shortcode saves it's content to a post's meta data, so if you're using it in a global area of your website like your header, footer, or sidebar, you should assign the shortcode a post or page ID to save it once to avoid saving it to every post or page it's visible on like this: [accessible_reading id="david" post_id="23"]This content will always save and pull it's accessible content from post ID 23[/accessible_reading] If you want to temporarily disable the automatic processing without removing the shortcode, you can set the disable attribute to 1 like this: [accessible_reading id="bowie" disabled="1"]This content won't be accessible, nor will it have a toggle. <em>Yet</em>.[/accessible_reading]

What is the accessible_reading_toggle shortcode and how do I use it?

The accessible_reading_toggle shortcode allows you to add a toggle switch anywhere on your WordPress website. To use it, simply place the self-closing shortcode anywhere on your WordPress website. For example: [accessible_reading_toggle/]

What is the accessible_reading_content shortcode and how do I use it?

The accessible_reading_content shortcode allows you to add pre-made accessible content anywhere on your WordPress website that a toggle switch will display when turned on. To use it, wrap the accessible content with the shortcode. For example: [accessible_reading_content]<span class="bionic-w bionic"><b class="bionic-b bionic">Lor</b>em</span> <span class="bionic-w bionic"><b class="bionic-b bionic">ips</b>um</span> <span class="bionic-w bionic"><b class="bionic-b bionic">dol</b>or</span> <span class="bionic-w bionic"><b class="bionic-b bionic">s</b>it</span> <span class="bionic-w bionic"><b class="bionic-b bionic">am</b>et.</span>[/accessible_reading_content] You can optionally add additional HTML classes to the outermost wrapper by setting the value to the classes attribute. If setting multiple classes, they should be separated by a single space. For example: [accessible_reading_content classes="custom-class-1 custom-class-2"]<span class="bionic-w bionic"><b class="bionic-b bionic">Lor</b>em</span> <span class="bionic-w bionic"><b class="bionic-b bionic">ips</b>um</span> <span class="bionic-w bionic"><b class="bionic-b bionic">dol</b>or</span> <span class="bionic-w bionic"><b class="bionic-b bionic">s</b>it</span> <span class="bionic-w bionic"><b class="bionic-b bionic">am</b>et.</span>[/accessible_reading_content]

What is the accessible_reading_original_content shortcode and how do I use it?

To complement the accessible_reading_content shortcode, the accessible_reading_original_content shortcode allows you to add the original content that a toggle switch will hide when accessible reading is turned on. To use it, simply wrap the original content with the shortcode. For example: [accessible_reading_original_content]Lorem ipsum dolor sit amet.[/accessible_reading_original_content] You can optionally add additional HTML classes to the outermost wrapper by setting the value to the classes attribute. If setting multiple classes, they should be separated by a single space. For example: [accessible_reading_original_content classes="custom-class-1 custom-class-2"]Lorem ipsum dolor sit amet.[/accessible_reading_original_content]

I'm adding this plugin to an existing website, can I use this to automatically generate content for posts in bulk?

Yes! In the plugin settings (Tools > Accessible Reading), you'll find the "Bulk Update" tab. There you can configure a bulk update. Starting a dry-run first will tell you how many API requests will be used and approximately how long it will take. This feature uses the WordPres CRON to reduce your server's load and respects your plan's daily API limit to prevent overages. If your bulk update uses more than what your plan allows, it will automatically schedule to continue the next day, so larger websites may take a few days to complete.

Is this the official Bionic Reading® WordPress plugin?

No, this WordPress plugin is not a product of Bionic Reading®. It was developed by an independent and disabled web developer that wants to bring more accessibility to the digital space. However, this plugin uses the official Bionic Reading® API to generate accessible text. If you pay for a premium API plan, that money goes toward the official makers of Bionic Reading®, not this plugin developer. If you want to support this plugin developer, donations are appreciated!

更新日志:

2.1.1 Release Date: October 9, 2022 2.1.0 Relase Date: September 27, 2022 2.0.1 Relase Date: September 26, 2022 2.0.0 Relase Date: September 25, 2022 1.3.4 Release Date: September 18, 2022 1.3.3 Release Date: August 17, 2022 1.3.2 Release Date: August 16, 2022 1.3.1 Release Date: June 23, 2022 1.3.0 Release Date: June 23, 2022 1.2.0 Release Date: June 17, 2022 1.1.0 Release Date: June 16, 2022 1.0.5 Release Date: June 2, 2022 1.0.2 Release Date: June 2, 2022 1.0.1 Release Date: June 1, 2022