Skip to content

Instantly share code, notes, and snippets.

View alokstha1's full-sized avatar

Alok Shrestha alokstha1

View GitHub Profile
@DeveloperWil
DeveloperWil / ZPD Contract.md
Last active July 29, 2023 22:50
The latest version of my ‘killer contract’ for web designers and developers

Zero Point Development Contract

  • Revised date: November 5th, 2017

Between [company name]

And [customer name].

@alokstha1
alokstha1 / archive.php
Created March 19, 2015 06:42
Pagination on archive.php, category.php, taxonomy.php on wordpress
<?php
if(have_posts()){
while ( have_posts() ) : the_post();
the_title();
endwhile;
}
previous_posts_link();
next_posts_link();