WP Accessibility Shortcode

Below, you’ll find a detailed guide on how to add the WP Accessibility Shortcode to your WordPress website, including its parameters, examples, and PHP function code. Additionally, we’ll assist you with common issues that might cause the WP Accessibility Plugin shortcode not to show or not to work correctly.

Before starting, here is an overview of the WP Accessibility Plugin and the shortcodes it provides:

Plugin Icon
WP Accessibility

"WP Accessibility is a powerful WordPress plugin that enhances your website's usability for all users, especially those with disabilities. It optimizes your site's accessibility, ensuring compliance with various standards."

★★★★☆ (64) Active Installs: 40000+ Tested with: 6.1.4 PHP Version: 5.6
Included Shortcodes:
  • [wpa_toolbar]

WP Accessibility [wpa_toolbar] Shortcode

The WP Accessibility plugin shortcode ‘wpa_toolbar’ is designed to create a toolbar on your website. It allows customization of the toolbar type and control. The PHP function ‘wpa_toolbar_shortcode’ defines the default attributes for the toolbar. It returns the HTML for the toolbar, based on the specified type and control.

Shortcode: [wpa_toolbar]

Parameters

Here is a list of all possible wpa_toolbar shortcode parameters and attributes:

  • type – defines the format of the toolbar, default is ‘widget’.
  • control – determines the control type, default is ‘button’.

Examples and Usage

Basic example – A simple usage of the ‘wpa_toolbar’ shortcode to create a widget type toolbar with a button control.

[wpa_toolbar type="widget" control="button" /]

Advanced examples

Customizing the ‘wpa_toolbar’ shortcode to create a toolbar of type ‘menu’ with a ‘dropdown’ control. This will create a dropdown menu toolbar.

[wpa_toolbar type="menu" control="dropdown" /]

Using the ‘wpa_toolbar’ shortcode to create a toolbar of type ‘widget’ with a ‘slider’ control. This will create a widget toolbar with a slider control.

[wpa_toolbar type="widget" control="slider" /]

Defining the ‘wpa_toolbar’ shortcode with a ‘form’ type and a ‘button’ control. This will create a form toolbar with a button control.

[wpa_toolbar type="form" control="button" /]

PHP Function Code

In case you have difficulties debugging what causing issues with [wpa_toolbar] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'wpa_toolbar', 'wpa_toolbar_shortcode' );

Shortcode PHP function:

function wpa_toolbar_shortcode( $atts, $content ) {
	$args = shortcode_atts(
		array(
			'type'    => 'widget',
			'control' => 'button',
		),
		$atts,
		'wpa_toolbar'
	);

	return wpa_toolbar_html( $args['type'], $args['control'] );
}

Code file location:

wp-accessibility/wp-accessibility/wp-accessibility-toolbar.php

Conclusion

Now that you’ve learned how to embed the WP Accessibility Plugin shortcode, understood the parameters, and seen code examples, it’s easy to use and debug any issue that might cause it to ‘not work’. If you still have difficulties with it, don’t hesitate to leave a comment below.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *