Skip to content

Instantly share code, notes, and snippets.

View marisqaporter's full-sized avatar

marisqaporter

View GitHub Profile
@marisqaporter
marisqaporter / point logo to alt url
Created February 16, 2015 22:46
point logo to alt url
add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 );
/**
* Change default Header URL.
*
* @author Jen Baumann
* @link http://dreamwhisperdesigns.com/genesis-tutorials/change-genesis-header-home-link/
*/
function child_header_title( $title, $inside, $wrap ) {
$inside = sprintf( '<a href="http://example.com/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
return sprintf( '<%1$s class="site-title">%2$s</%1$s>', $wrap, $inside );
@marisqaporter
marisqaporter / favicon.php
Last active August 29, 2015 14:15
Genesis - custom favicon.
//* Display a custom favicon
add_filter( 'genesis_pre_load_favicon', 'sp_favicon_filter' );
function sp_favicon_filter( $favicon_url ) {
return 'IMAGEURL';
}
@marisqaporter
marisqaporter / Change Entry Title of Custom Post Type in WordPress
Last active August 29, 2015 14:17
Change Entry Title of Custom Post Type in WordPress
/*change entry title of custom post type */
function change_default_title( $title ){
$screen = get_current_screen();
if ( $screen->post_type == 'faq' ) {
return 'Question';
}
}
@marisqaporter
marisqaporter / Fancy Unordered List HTML
Created March 25, 2015 01:07
Fancy Unordered List
<ul id="breakfast-benefits">
<li>Less visits to nurse</li>
<li>Less behavior problems</li>
<li>Greater attention span</li>
<li>Higher academic acheivement</li>
</ul>
@marisqaporter
marisqaporter / Fancy Ordered List HTML
Created March 25, 2015 01:10
Fancy Ordered List HTML
<ol id="start-program">
<li>Share 2014 CT School Breakfast Report on Social Media</li>
<li>Download School Nutrition Hub Guide</li>
<li>Download Template Letter to the Editor for School Breakfast Program.</li>
<li>Increase Participation in Your School Breakfast Program. Learn more.</li>
</ol>
@marisqaporter
marisqaporter / Fancy Unordered List CSS
Created March 25, 2015 01:13
Fancy Unordered List CSS with unique colors for each li
#breakfast-benefits {
float:left; position:relative;
}
#breakfast-benefits li {
list-style-type:none;
padding-left:30px;
}
#breakfast-benefits li:before {
content: "■";
color:#61c0e1;
@marisqaporter
marisqaporter / Fancy Ordered List CSS
Last active August 29, 2015 14:17
Fancy Ordered List CSS with massive numbers and unique colors for each li
#start-program li {
list-style-type:none;
font-weight:bold;
line-height:180%;
margin:0 0 60px 0;
padding-left:60px;
position:relative;
min-height:50px;
}
@marisqaporter
marisqaporter / change_search_form_text.php
Last active August 29, 2015 14:17
Change Search Form text in Genesis
/** Customize search form input box text */
add_filter( 'genesis_search_text', 'custom_search_text' );
function custom_search_text($text) {
return esc_attr( 'Search Text You Want Here' );
}
@marisqaporter
marisqaporter / Tweet This Example
Created April 3, 2015 04:11
Tweet This URL code example
<a href="http://twitter.com/home/?status=You are your own biggest asset and your own biggest liability but you have to believe in you.via @natewilldo" target="_blank">tweet this</a>
@marisqaporter
marisqaporter / featured image on single posts on Genesis
Created April 11, 2015 04:26
featured image on single posts on Genesis