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
/* The next time you hear "needs more wow," add this to the stylesheet. | |
- Dan Cederholm at Build Conference 2010 https://vimeo.com/17091905 */ | |
*:hover { | |
-webkit-transform: rotate(180deg); | |
-moz-transform: rotate(180deg); | |
-o-transform: rotate(180deg); | |
transform: rotate(180deg); | |
} |
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
// the number is the author ID | |
<?php $author = get_userdata(2); echo $author->user_description; ?> |
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 | |
// Create *_ taxonomy | |
add_action( 'init', 'create_TAXONOMYNAME' ); | |
function create_TAXONOMYNAME() { | |
$labels = array( | |
'name' => _x( 'PLURAL', 'taxonomy general name' ), | |
'singular_name' => _x( 'SINGULAR', 'taxonomy singular name' ), | |
'search_items' => __( 'Search PLURAL' ), | |
'all_items' => __( 'All PLURAL' ), | |
'parent_item' => __( 'Parent SINGULAR' ), |
NewerOlder