absolutelyessentialabsolutelynecessaryactualfacts- advance
forward advanceplanningadvancepreviewadvancereservationsadvancewarning- add
an additional - add
up
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
<div class="copyright"> | |
<p> | |
© <?= date( 'Y') ?> | |
<a href="<?= home_url() ?>"> | |
<?php bloginfo( 'name' ); ?> | |
</a> | |
<?php _e( 'All rights reserved.', 'compendium' ); ?> | |
</p> | |
</div> |
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
<? | |
add_action( 'admin_head', function() { | |
global $pagenow; | |
if ( !('post.php' == $pagenow) ) return; | |
global $post; | |
// Get the Post ID. | |
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ; |
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
<? class MyWidget extends WP_Widget { | |
/** Widget setup **/ | |
function MyWidget() { | |
parent::WP_Widget(false, | |
__( 'My Widget', 'mytextdomain' ), | |
['description' => __( 'Displays a list of stuff', 'mytextdomain' )], | |
['width' => '400px'] | |
); | |
} |
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
<? class MyWidget extends WP_Widget { | |
/** Widget setup **/ | |
function MyWidget() { | |
parent::WP_Widget(false, | |
__( 'My Widget', 'mytextdomain' ), | |
['description' => __( 'Displays a list of stuff', 'mytextdomain' )], | |
['width' => '400px'] | |
); | |
} |
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
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch | |
git add .gitignore | |
git commit -m 'Removed all .DS_Store' |
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> | |
<head> | |
<meta charset="utf-8"/> | |
<title>New Webpage</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/> | |
<link rel="stylesheet" href=""/> | |
</head> |
- accordingly -> so
- accuracy -> accurate
- admit
to allofall things being equalas a matter of fact- appearance -> appeared
- are after -> seek, desire, want
- as
being as far as I’m concerned
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
syntax on | |
set tabstop=2 | |
set shiftwidth=2 | |
" Incremental Search | |
set incsearch | |
" Search Highlighting | |
set hlsearch | |
" Mapping |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled</title> | |
</head> | |
<body> | |
</body> | |
</html> |