Skip to content

Instantly share code, notes, and snippets.

@topleague
topleague / add-class-entry-genesis.php
Created September 27, 2017 11:54
Add a Class to Entry
//* Add class to .entry
add_filter( 'genesis_attr_entry', 'susanta_animate_entry' );
function susanta_animate_entry( $attributes ) {
$attributes['class'] = $attributes['class']. ' animate-entry MoveUp';
return $attributes;
}
@topleague
topleague / moveup-animation-entry-genesis.css
Created September 27, 2017 11:56
Add MoveUp Animation to Entry in Genesis
/* Add Effect: Move Up to Entry */
.animate-entry {
-webkit-transform: translateY(200px);
transform: translateY(200px);
-webkit-animation: moveUp 0.65s ease forwards;
animation: moveUp 0.65s ease forwards;
}
@-webkit-keyframes moveUp {
@topleague
topleague / edit-default-footer-genesis.php
Created October 27, 2017 12:06
Edit Default Footer in Genesis
@topleague
topleague / code-block-footer-child-theme-genesis.php
Created October 27, 2017 12:16
Code Block for Footer Child Theme Link in Genesis
@topleague
topleague / sample-html-footer-genesis
Created October 27, 2017 12:18
Sample HTML for Footer Text
@topleague
topleague / customize-site-footer-genesis-theme
Last active December 3, 2019 07:11
Customize Site Footer in Genesis Theme
@topleague
topleague / number-columns-genesis-footer-widgets.php
Created October 30, 2017 05:33
Change Number of Columns in Genesis Footer Widgets
@topleague
topleague / show-footer-widgets-specific-page.php
Last active December 3, 2019 07:11
Show Genesis Footer Widgets Only on Specific Page
@topleague
topleague / remove-footer-widgets-specific-page.php
Created October 30, 2017 05:46
Remove Genesis Footer Widgets Only on Specific Page
@topleague
topleague / relocate-genesis-footer-widgets.php
Created October 30, 2017 05:50
How to Relocate Genesis Footer Widgets