PHP code example of carawebs / address
1. Go to this page and download the library: Download carawebs/address library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
carawebs / address example snippets
do_action('carawebs_address');
add_filter( 'carawebs_address_business_name', __NAMESPACE__ . '\\filter_business_name', 1, 2 );
function filter_business_name( $content, $business_name ){
return '<h4><span itemprop="name">' . $business_name . '</span></h4>';