This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * get_redirect_url() | |
| * Gets the address that the provided URL redirects to, | |
| * or FALSE if there's no redirect. | |
| * | |
| * @param string $url | |
| * @return string | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function Convert_to_htmlTag($string, $tagSign='|') { | |
| if(strpos($string, '|') == true) { | |
| $firstSign = strpos($string, $tagSign); | |
| $lastSign = strpos($string, $tagSign, $firstSign + 1); | |
| $strArray = str_split($string); | |
| $replaceSigns = array($firstSign => '<span>', $lastSign => '</span>'); | |
| $replaceSigns = array_replace($strArray, $replaceSigns); | |
| echo implode($replaceSigns); | |
| }else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'vc_before_init', function() { | |
| if (class_exists('WPBMap')) { | |
| add_filter('init', function () { | |
| $param = WPBMap::getParam('vc_icon', 'type'); | |
| $param['value'][__('Thimify Icon', 'total')] = 'themify_icon'; | |
| vc_update_shortcode_param('vc_icon', $param); | |
| }, 40); |
NewerOlder