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 | |
function href($url, $anchor, $class = null) | |
{ | |
$html = "<a "; | |
if ($class != null) { | |
$html .= 'class="' . $class . "' "; | |
} | |
$html .= 'href="' . $url . '"' . ">" . $anchor . "</a>"; |
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='contact-block'> | |
<div class='contact-block-wrap'> | |
<img src='http://example/logo.jpg' /> | |
</div> | |
<div class='contact-block-inner contact-address'> | |
<p>Somewhere Road</p> | |
<p>My Town, CA 900001</p> | |
</div> | |
<div class='contact-block-inner contact-block-phones'> |
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
/* | |
* We have a 220x220px area with 50% rounded radius, effectively | |
* creating a circle. We'll color the circle with a modern mellow | |
* cool blue with a bold white font smack in the middle. | |
*/ | |
.lakepark-round | |
{ | |
font-size: 36px; | |
font-weight: 800; | |
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
*~ | |
diff | |
*.diff | |
patch | |
*.patch | |
error_log | |
foo | |
remove-me |
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
;; .emacs | |
;;; uncomment this line to disable loading of "default.el" at startup | |
;; (setq inhibit-default-init t) | |
;; turn on font-lock mode | |
(when (fboundp 'global-font-lock-mode) | |
(global-font-lock-mode t)) | |
;; enable visual feedback on selections |
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 lpo_display_child_pages_with_thumbs() | |
{ | |
global $wpdb; | |
global $post; | |
/* | |
* create a query that will locate all children of THIS page keeping | |
* the ORDER in specified in this page. | |
*/ | |
$sql = "SELECT * FROM $wpdb->posts WHERE post_parent = " . |
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
// Load custom style sheet | |
add_action( 'wp_enqueue_scripts', 'custom_load_custom_style_sheet' ); | |
function custom_load_custom_style_sheet() { | |
wp_enqueue_style( 'custom-stylesheet', CHILD_URL . '/custom.css', array(), PARENT_THEME_VERSION ); | |
} | |
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
Copyright Eddy Consulting, LLC (DBA <a href="http://LakeParkOnline.com">Lake Park Online</a>) |
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
*~ | |
foo | |
\#* | |
data | |
reports | |
diff | |
*.diff | |
*.patch | |
OlderNewer