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
// Current code: | |
<?php $tags = get_tags(); | |
if ($tags) { | |
foreach ($tags as $tag) { | |
echo '<li><a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </li> '; | |
} | |
} ?> | |
// What I found: |
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
.button { | |
width: 120px; | |
display: block; | |
margin: 28px auto; | |
padding: 6px 10px; | |
background: transparent; | |
cursor: pointer; | |
outline: none; | |
border: 1px solid #999; | |
text-shadow: 0 1px 1px #fff; |
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
paginate: 10 |
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
tell application "Finder" | |
set {a, b, c, d} to bounds of window of desktop -- the bounds of the desktop | |
tell application "System Events" to tell (process 1 whose frontmost is true) | |
set position of window 1 to {a, b} | |
set size of window 1 to {((c / 100) * 76), d} | |
end tell | |
end tell |