Skip to content

Instantly share code, notes, and snippets.

View navnit-viradiya's full-sized avatar

Navnit Viradiya navnit-viradiya

View GitHub Profile
@navnit-viradiya
navnit-viradiya / show-category-wise-posts-shortcode.php
Created August 28, 2018 12:57
Show category wise posts for custom post type in wordpress
<?php
//Show post category wise shortcode [show_post_category_wise]
add_shortcode('show_post_category_wise','show_post_category_wise_shortcode');
function show_post_category_wise_shortcode(){
$terms = get_terms('technology');
$html = '';
if($terms) {
foreach($terms as $term){
@navnit-viradiya
navnit-viradiya / countries.js
Created August 21, 2018 08:16
List of Countries with Phone Code as a jQuery Array
var countries = {
"297" : {
"countryName": "Aruba",
"code": "AW",
"phoneCode": "297"
},
"93" : {
"countryName": "Afghanistan",
"code": "AF",
"phoneCode": "93"