A Pen by michael salmon on CodePen.
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 | |
// Customized login page | |
function theme_prefix_custom_login_page() { | |
$custom_logo_id = get_theme_mod( 'custom_logo' ); // image from cusomizer logo | |
$image = wp_get_attachment_image_src( $custom_logo_id , 'full' ); | |
$bg = get_stylesheet_directory_uri() . '/images/bg.jpg'; // change url to your preferred image | |
?> | |
<style type="text/css"> | |
body.login { |
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 | |
/* | |
* @Author Jayson Antipuesto | |
* @Description Testimonial custom post type with metabox | |
* @Site Upward Spiral Consulting | |
*/ | |
// Register Custom Post Type | |
function testimonial_post_type() { |
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 | |
/** | |
* Template Name: Our Team Template | |
* Description: Used as a page template to display our team child pages | |
*/ | |
//* Loop | |
remove_action('genesis_loop', 'genesis_do_loop'); | |
add_action('genesis_loop', 'our_team_loop'); |
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 | |
//* Auto post image | |
add_action( 'genesis_entry_header', 'advance_post_featured_image', 15 ); | |
function advance_post_featured_image() { | |
if ( is_archive() ) | |
return; |
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 | |
//* Advance Theme Setting Defaults | |
add_filter( 'genesis_theme_settings_defaults', 'advance_theme_defaults' ); | |
function advance_theme_defaults( $defaults ) { | |
$defaults['blog_title'] = 'image'; | |
$defaults['blog_cat_num'] = 5; | |
$defaults['content_archive'] = 'full'; | |
$defaults['content_archive_limit'] = 200; |
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 | |
define('COMPASSIONATE_SETTINGS_FIELD','compassionate-settings'); | |
class COMPASSIONATE_THEME_SETTINGS extends Genesis_Admin_Boxes { | |
function __construct() { | |
$page_id = 'compassionate'; |