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 | |
if ( ! defined( 'ABSPATH' ) ) exit; | |
class Code_Snippet_Library { | |
private $dir; | |
private $file; | |
private $assets_dir; | |
private $assets_url; |
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
/* Tiny MCE Modifications */ | |
function myformatTinyMCE($in) { | |
$style_formats = array( | |
array( | |
'title' => 'First paragraph', | |
'selector' => 'p', | |
'classes' => 'standFirst' |
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
<span class="user-avatar-image"><?php global $current_user; get_currentuserinfo(); echo get_avatar( $current_user->ID, 64 ); ?>< | |
span> |
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
-- | |
-- OCR all documents added to a folder | |
-- | |
on adding folder items to this_folder after receiving added_items | |
try | |
repeat with i from 1 to number of items in added_items | |
set this_item to item i of added_items | |
set appName to my getAppName() | |
tell application appName | |
activate |
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
 |
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 | |
// ADD THIS TO YOUR CHILD THEMES FUNCTIONS.PHP | |
remove_action( 'genesis_site_title', 'genesis_remove_site_title' ); | |
add_action( 'genesis_site_title', 'child_genesis_add_site_title' ); | |
function child_genesis_add_site_title() { | |
?> | |
<?php if ( get_theme_mod( 'child_genesis_logo' ) ) : ?> | |
<h1 itemprop="headline" class='site-title'><a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'child_genesis_logo' ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a></h1> |
OlderNewer