adding fresh FoundationPress theme from scratch

This commit is contained in:
ut 2018-10-26 11:51:32 +02:00
commit 3785add5fa
127 changed files with 29293 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<?php
/**
* Change the class for sticky posts to .wp-sticky to avoid conflicts with Foundation's Sticky plugin
*
* @package FoundationPress
* @since FoundationPress 2.2.0
*/
if ( ! function_exists( 'foundationpress_sticky_posts' ) ) :
function foundationpress_sticky_posts( $classes ) {
if ( in_array( 'sticky', $classes, true ) ) {
$classes = array_diff( $classes, array( 'sticky' ) );
$classes[] = 'wp-sticky';
}
return $classes;
}
add_filter( 'post_class', 'foundationpress_sticky_posts' );
endif;