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 | |
//* Do NOT include the opening php tag shown above. Copy the code shown below. | |
//* Updated 5/26/2024 to reflect changes to the plugin | |
function rename_portfolio_custom_post_type_slug() { | |
// Get the post type object | |
$post_type_object = get_post_type_object( 'portfolio' ); | |
// Convert the post type object to an array to manipulate its arguments | |
$args = (array) $post_type_object; |
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 support for additional color style options | |
add_theme_support( 'genesis-style-selector', array( | |
'maker-dark' => __( 'Maker Dark', 'maker' ), | |
'maker-medium' => __( 'Maker Medium', 'maker' ), | |
) ); | |
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 Comments to Portfolio Custom Post Type (https://codex.wordpress.org/Function_Reference/add_post_type_support) | |
function add_comments_portfolio() { | |
add_post_type_support( 'portfolio', 'comments' ); | |
} | |
add_action( 'init', 'add_comments_portfolio', 11 ); |
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 | |
/** | |
* Custom Landing Page for the Swank Child Theme | |
* | |
* This file adds the landing page template to the Swank Child Theme. | |
* | |
* Template Name: Landing | |
* | |
* @package Custom Landing Page for Swank | |
* @author Anita Carter |
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
<div class="video-code">ADD YOUR IFRAME</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
/* Column Classes | |
Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css | |
--------------------------------------------- */ | |
.five-sixths, | |
.four-sixths, | |
.one-fourth, | |
.one-half, | |
.one-sixth, | |
.one-third, |
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
/* | |
Clear fix for column classes | |
---------------------------------------------------------------------------------------------------- */ | |
.clear-line:after { | |
content: "."; | |
display: block; | |
clear: both; | |
visibility: hidden; | |
line-height: 0; | |
height: 0; |
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
/* Essence Pro Archive Posts Side by Side like Blog Page | |
---------------------------------------------------------------------------------------------------- */ | |
.archive .content { | |
max-width: none; | |
width: 100%; | |
} | |
.archive .content .entry { | |
float: left; |