Skip to content

Instantly share code, notes, and snippets.

View saidMounaim's full-sized avatar
:octocat:

Said Mounaim saidMounaim

:octocat:
View GitHub Profile
@saidMounaim
saidMounaim / custom-pagination-wordpress.php
Created October 13, 2021 16:08
Custom pagination in wordpress
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$loop = new WP_Query( array(
'post_type' => 'post',
'posts_per_page' => 6,
'paged' => $paged,
)
); ?>
@saidMounaim
saidMounaim / bouncing-loader.html
Last active September 6, 2021 08:47
Creates a bouncing loader animation.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>loader</title>
<style>