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
#jobclosed { | |
background: #F7F7F7; | |
margin: 0 15px 15px 15px; | |
padding: 10px 20px 0 15px; | |
border: 1px solid #E6E6E6; | |
} |
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
//* Add shortcode for closed job listings | |
function job_closed_text() { | |
return '<div id="jobclosed"><em><p>This job opening has been filled. Nonetheless, we encourage you to apply anyway. Many of our openings are filled within hours of being posted and if we do not know who you are, we will not be able to call on you.</p><p>We are not a Monster job board. We are real, live human beings whose job it is to make connections. We promise not to waste your time.</p></em></div>'; | |
} | |
add_shortcode("jobclosed", "job_closed_text"); |
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
//* Remove WP version from enqueued scripts | |
function nabm_remove_version( $src ) { | |
if ( strpos( $src, 'ver=' ) ) | |
$src = remove_query_arg( 'ver', $src ); | |
return $src; | |
} | |
add_filter( 'style_loader_src', 'nabm_remove_version', 9999 ); | |
add_filter( 'script_loader_src', 'nabm_remove_version', 9999 ); | |
//* Remove WP version from page source |
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
//* Set default homepage image for Facebook | |
function nabm_facebook_image() { | |
if ( is_home() ) { | |
echo '<meta property="og:type" content="website" />'; | |
echo '<meta property="og:image" content="URL-TO-IMAGE" />'; | |
} | |
} | |
add_action( 'wp_head', 'nabm_facebook_image' ); |
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
//* Change site title URL | |
function be_logo_url( $title, $inside, $wrap ) { | |
$inside = sprintf( '<a href="%s" title="%s">%s</a>', esc_url( 'http://www.example.com' ), esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) ); | |
$title = sprintf( '<%s id="title">%s</%s>', $wrap, $inside, $wrap ); | |
return $title; | |
} | |
add_filter( 'genesis_seo_title', 'be_logo_url', 10, 3 ); |
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
add_action( 'genesis_before_comments' , 'nabm_post_check' ); | |
function nabm_post_check () { | |
if ( is_single() ) { | |
if ( have_comments() ) { | |
remove_action( 'genesis_comment_form', 'genesis_do_comment_form' ); | |
add_action( 'genesis_list_comments', 'genesis_do_comment_form' , 5 ); | |
} | |
} | |
} |
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
//* Add the page widget in the content - XHTML | |
add_action( 'genesis_after_post_content', 'nabm_add_page_content' ); | |
function nabm_add_page_content() { | |
if ( is_page('ID') ) | |
genesis_widget_area ('page-widget', array( | |
'before' => '<div class="page-widget"><div class="wrap">', | |
'after' => '</div></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
//* Add the page widget in the content - HTML5 | |
add_action( 'genesis_entry_footer', 'nabm_add_page_content' ); | |
function nabm_add_page_content() { | |
if ( is_page('ID') ) | |
genesis_widget_area ('page-widget', array( | |
'before' => '<div class="page-widget"><div class="wrap">', | |
'after' => '</div></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
genesis_register_sidebar( array( | |
'id' => 'page-widget', | |
'name' => __( 'Page Widget', 'nabm' ), | |
'description' => __( 'This is the widget area for a specific page.', 'nabm' ), | |
) ); |
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
/* Page Widget | |
------------------------------------------------------------ */ | |
.page-widget { | |
line-height: 1.5; | |
padding: 30px; | |
} | |
.page-widget p { | |
margin-bottom: 24px; |