wpbdp_heading_type

Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.

Change the default h1 for the heading on a single listing page to something else.

Usage

add_filter( 'wpbdp_heading_type', 'change_bd_listing_heading' );

Parameters

  • $heading (string)

Examples

Use h2 for the heading

Switch the single listing heading from an h1 to h2.

add_filter( 'wpbdp_heading_type', 'change_bd_listing_heading' );
function change_bd_listing_heading( $heading ) {
  return 'h2';
}

Change Log

Added in version 5.9

Related Articles

Need Support?

Can't find the answer you're looking for?
Contact Support