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 | |
//Configuration | |
$perpage = 5; //number of results to show per page | |
$pagenum = 1; // set the starting page number | |
//what phrase did they search for? | |
$phrase = $_GET['phrase']; | |
//get all posts and comments that are similar to the query, make sure the posts are distinct | |
$query_search = "SELECT distinct * |
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 | |
//turn on tumblr-style post formats | |
add_theme_support('post-formats', array('image', 'video', 'audio', 'quote', 'gallery')); | |
//adds ability to have one featured image per post or page | |
add_theme_support('post-thumbnails'); | |
//more robust feed links on every page | |
add_theme_support('automatic-feed-links'); |
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 | |
function awesome_comment_reply(){ | |
if( !is_admin() && is_singular() && comments_open() && get_option('thread_comments') ): | |
wp_enqueue_script( 'comment-reply' ); | |
endif; | |
} | |
add_action( 'wp_print_scripts', 'awesome_comment_reply' ); |
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 | |
//change the default (55 words) length of excerpts to 20 words | |
function new_ex_length($length) { | |
return 20; | |
} | |
add_filter('excerpt_length', 'new_ex_length', 999); | |
//changes the [...] to a button when excerpt content is truncated | |
function new_excerpt_more($more) { | |
$readmore = 'Read More'; |
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 | |
/** | |
* Set up Widget Areas (Dynamic Sidebars) | |
*/ | |
register_sidebar( array( | |
'name' => 'Home Features', | |
'description' => 'An area near the bottom of the home page', | |
'id' => 'home-features', | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</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 | |
//show the form if the user is not logged in | |
if( !is_user_logged_in() ): | |
wp_login_form(); | |
else: | |
$redirect = home_url(); | |
echo '<a href="'.wp_logout_url( $redirect ).'">Log Out</a>'; | |
endif; | |
?> |
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
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700); | |
/* | |
== meyer reset | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
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
<table class="form-table"> | |
<tbody> | |
<tr valign="top"> | |
<th scope="row"> | |
<label>Option 1</label> | |
</th> | |
<td> | |
INPUT 1 | |
</td> | |
</tr> |
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
<article class="tile cf graphic-design @TODO PUT WORDPRESS POST_CLASS HERE"> | |
<div class="resource-image thumbnail"> | |
<a href="PERMALINK"> | |
<img src="http://placekitten.com/352/198" alt="TITLE" /> | |
</a> | |
<div class="popularity"><a href="#"><i class="icon-heart"></i></a> 9999</div> | |
<div class="category-icon"> <a href="CATEGORY ARCHIVE"><i class="icon-magic"></i></a> </div> | |
</div> | |
<h3 class="entry-title"><a href="PERMALINK">TITLE OF RESOURCE</a></h3> |