Home / Widgets / YB Settings
Duplicate Snippet

Embed Snippet on Your Site

YB Settings

Code Preview
php
<?php
function impBrandsArchive( $query ) {
	$query->set( 'post_type', [ 'hot-tubs', 'swim-spas', 'saunas' ] );
}
add_action( 'elementor/query/brands_archive', 'impBrandsArchive' );
/**
 * Action: 'rank_math/vars/register_extra_replacements' - Allows adding extra variables.
 */
add_action( 'rank_math/vars/register_extra_replacements', function(){
 rank_math_register_var_replacement(
	 'dealer_currency',
	 [
	 'name'        => esc_html__( 'Dealer Currency', 'rank-math' ),
	 'description' => esc_html__( 'Dealer Currency from dealer options page.', 'rank-math' ),
	 'variable'    => 'dealer_currency',
	 'example'     => 'impGetDealerCurrency',
	 ],
	 'impGetDealerCurrency'
 );
});
function impGetDealerCurrency() {
	return jet_engine()->listings->data->get_option( 'dealer-options::currency' );
}

Comments

Add a Comment