Skip to content

Instantly share code, notes, and snippets.

View viramgamijignesh's full-sized avatar
🏠
Working from home

viramgamijignesh

🏠
Working from home
View GitHub Profile
@viramgamijignesh
viramgamijignesh / bootstrap.min.css
Last active January 18, 2018 08:02
Custom post type with ajax pagignation shortcode
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-si
@viramgamijignesh
viramgamijignesh / category-template.php
Last active January 16, 2018 07:44
Category wise post display
<?php
/* Template Name: Category Post Template */
get_header();
?>
<div id="container">
<div id="content" role="main">
<?php
// get all the categories from the database
@viramgamijignesh
viramgamijignesh / date wise post filter as portfolio type
Last active January 16, 2018 07:37
date wise post filter as portfolio type
=============custom css===============
#portfolio {
margin: 1rem 0;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;