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
1033edge.com | |
11mail.com | |
123.com | |
123box.net | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
126.com | |
150ml.com | |
15meg4free.com |
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
\:(\w+\.?\w+) |
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 | |
/** | |
* Plugin Name: WordPress Vue Tool | |
* Description: Example WordPress Vue Tool Plugin | |
*/ | |
function wordpress_vue_tool_build_js() | |
{ | |
wp_register_script('wordpress-vue-tool', plugin_dir_url(__FILE__) . 'app/dist/build.js', [], null, true); |
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
var docWidth = document.documentElement.offsetWidth; | |
[].forEach.call( | |
document.querySelectorAll('*'), | |
function(el) { | |
if (el.offsetWidth > docWidth) { | |
console.log(el); | |
} | |
} | |
); |
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 | |
protected function _content_template() | |
{ | |
?> | |
<div class="jhdc-branding-withlove"> | |
<a href='https://jimmyhowe.com/' | |
target='_blank'>Made with ❤ by JimmyHowe.com</a> |
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 | |
protected function render() | |
{ | |
echo '<div class="jhdc-branding-withlove">'; | |
echo "<a href='https://jimmyhowe.com' | |
target='_blank'>Made with ❤ by JimmyHowe.com</a>"; | |
echo '</div>'; |
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 | |
protected function _register_controls() | |
{ | |
$this->start_controls_section('brand_colors', [ | |
'label' => __('Colors', 'jhdc-branding-elementor-extension'), | |
'tab' => Controls_Manager::TAB_STYLE, | |
]); | |
$this->add_control('color', [ |
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 | |
use Elementor\Controls_Manager; | |
use Elementor\Group_Control_Typography; | |
use Elementor\Widget_Base; | |
if ( ! defined('ABSPATH') ) | |
{ | |
exit; // Exit if accessed directly. | |
} |
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 | |
/** | |
* JHDC Branding Elementor Extension | |
* | |
* @package JHDC | |
* @author Jimmy Howe | |
* @copyright 2019 JimmyHowe.com | |
* @license GPL-2.0-or-later | |
* |
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 | |
/** | |
* JHDC Branding Elementor Extension | |
* | |
* @package JHDC | |
* @author Jimmy Howe | |
* @copyright 2019 JimmyHowe.com | |
* @license GPL-2.0-or-later | |
* |
NewerOlder