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 | |
/* | |
* In this example, we are excluding the current post from a list in Generate Press query loop | |
*/ | |
add_filter( 'generateblocks_query_loop_args', function( $query_args, $attributes ) { | |
// apply filter if loop has class: recent-posts-grid | |
if (! is_admin() && ! empty( $attributes['className'] ) && strpos( $attributes['className'], 'recent-posts-grid' ) !== false) { |
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
/* Reference video - https://youtu.be/VHh8FWYWhLM?t=1280 */ | |
.card { | |
position: relative; | |
} | |
.card a::after { | |
content: ""; | |
position: absolute; | |
inset: 0; |
OlderNewer