Animation as shown in the link

Checking out the source code on the page I see the cards are svg and are run by css transitions like this: .svg-cards { display: inline-block; position: absolute; width: 20vmin; overflow: hidden; min-width: 100px; border-radius: 15px; box-shadow: -30px -30px 40px 15px rgba(0, 0, 0, 0.9); line-height: 0; } .svg-cards.rotation { box-shadow: -1px 1px 6px rgba(0, … Read more

Display all posts in a page code for template

That’s because the code you listed only includes a reference for the title and the link. Here’s your original code, annotated … Original <?php $debut = 0; //The first article to be displayed ?> <?php while(have_posts()) : the_post(); ?> <!– Display the title of the current page that’s listing your posts –> <h2><?php the_title(); ?></h2> … Read more

Loop on a wordpress Page instead of content coming from the WP text editor

On your custom page template, the default loop is working and that’s why the loop is fetching content from the page. You need a custom query in this case. Here’s the code. <?php $query = new WP_Query( array( ‘post_type’ => ‘post’, ‘post_status’ => ‘publish’, ) ); if ( $query->have_posts() ) { while ( $query->have_posts() ) … Read more