Skip to content

Instantly share code, notes, and snippets.

View aslamhindko's full-sized avatar

Aslam Hindko aslamhindko

View GitHub Profile
@asadaly111
asadaly111 / featureImage.php
Last active October 27, 2016 04:52
Multiple Feature Image in wordpress
//Three Step to go..
//1. Install the plugin called "Multiple Post Thumbnails"
https://wordpress.org/plugins/multiple-post-thumbnails/
//2. Register Feature image for post type accordingly
if (class_exists('MultiPostThumbnails')) {
new MultiPostThumbnails(
@asadaly111
asadaly111 / pagination.php
Last active May 11, 2017 07:40
Wordpess Pagination without plugin custom pagination by asadaly111
//add in function in function.php
function pagination($pages = '', $range = 4)
{
$showitems = ($range * 2)+1;
global $paged;
if(empty($paged)) $paged = 1;
if($pages == '')
{