Home / Admin / Change Business Info Opening Hours Icon
Duplicate Snippet

Embed Snippet on Your Site

Change Business Info Opening Hours Icon

This filter can be used to change the business info Opening Hours icon.

Replace "/assets/images/email-icon.png" with the icon path.

<10
Code Preview
php
<?php
add_filter( 'aioseo_local_business_opening_hours_icon', 'aioseo_change_local_business_opening_hours_icon');
function aioseo_change_local_business_opening_hours_icon( $icon ) {
	return '<img src="'.get_template_directory_uri().'/assets/images/hours-icon.png"/>';
}

Comments

Add a Comment