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
.grid-bg { | |
background-image: radial-gradient(#707070 1px, transparent 1px); | |
background-size: 20px 20px; /* Space between dots */ | |
background-repeat: repeat; | |
height: 100vh; | |
} |
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
# | |
# WordPress | |
# | |
'.text.html.php': | |
# Head | |
'WordPress Head': | |
'prefix': 'wp-head' | |
'body': '<?php wp_head(); ?>' | |
# Footer | |
'WordPress Footer': |
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 | |
/* ================================================= | |
ADMIN PAGE | |
==================================================== */ | |
// ===== ADD PAGE | |
function setting_adminpage() { | |
// PARENT 1/2 | |
add_menu_page('settings Theme options', 'Custom Page', 'manage_options', 'setting_parent_slug', 'setting_parent_page_function', 'dashicons-media-archive', 110); |
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
'atom-text-editor:not([mini])': | |
# wrap with abbreviation | |
'ctrl-shift-a': 'emmet:wrap-with-abbreviation' | |
# expand abbreviation | |
'ctrl-alt-enter': 'emmet:expand-abbreviation' | |
# remove the html matching tag | |
'ctrl-shift-;': 'emmet:remove-tag' |
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
/* CONTAINER (parent) */ | |
/* -webkit-flex, -moz-flex, -webkit-inline-flex, -moz-inline-flex */ | |
display: flex; | |
display: inline-flex; | |
/* DIRECTION (for children, added to the parent) */ | |
/* -webkit-flex-direction, -moz-flex-direction */ | |
flex-direction: row; | |
flex-direction: row-reverse; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> |
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 | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |
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
<!-- Header --> | |
<?php get_header(); ?> | |
<!-- File name --> | |
<p class="page_template">index.php</p> | |
<div class="row"> | |
<div class="col-lg-9"> | |
<!-- Starting the loop --> | |
<?php |
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
jQuery 3.x | |
<!-- jQuery Core 3.1.1 --> | |
https://code.jquery.com/jquery-3.1.1.js | |
https://code.jquery.com/jquery-3.1.1.min.js | |
https://code.jquery.com/jquery-3.1.1.slim.js | |
https://code.jquery.com/jquery-3.1.1.slim.js | |
Bootstrap 3.3.7 | |
<!-- Latest compiled and minified CSS --> | |
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css |
NewerOlder