Skip to content

Instantly share code, notes, and snippets.

View h1dd3nsn1p3r's full-sized avatar
🎯
Focusing

Anuj Subedi h1dd3nsn1p3r

🎯
Focusing
View GitHub Profile
@h1dd3nsn1p3r
h1dd3nsn1p3r / function.php
Last active August 20, 2016 10:32
Adding custom post type support in functions.php file to show custom posts types in category, tags & archives.
/*
display / Show custom post types posts in Archive, tags & categories.
*/
function query_post_type($query) {
if(is_category() || is_tag()) {
$post_type = get_query_var('post_type');
if($post_type) {
$post_type = $post_type;
} else {
@h1dd3nsn1p3r
h1dd3nsn1p3r / shortcode.php
Created August 20, 2016 11:54
converting Wordpress shortcode to php
/**
@simply copy the code and rename the "YOUR_SHORT_CODE_HERE" .
@ code by h1dd3n_sn1p3r
*/
<?php echo do_shortcode('[YOUR_SHORT_CODE_HERE]');?>
@ini_set( 'upload_max_size' , '128M' );
@ini_set( 'post_max_size', '128M');
@ini_set( 'max_execution_time', '300' );
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
upload_max_filesize = 128M
post_max_size = 128M
max_execution_time = 300
<?php
$rss = fetch_feed('Your_Website_Rss_Url_Here'); // eg http://anujsubedi.com.np/blog/feed
if (!is_wp_error( $rss ) ) :
$maxitems = $rss->get_item_quantity(4); // increase items quantity eg. 6
$rss_items = $rss->get_items(0, $maxitems);
endif;
?>
<?php
function shorten($string, $length)
@h1dd3nsn1p3r
h1dd3nsn1p3r / Remove Pinterest save pin button from specific image
Created March 10, 2020 05:49
Remove Pinterest save pin button from specific image (Has class custom logo)
<script type="text/javascript">
var element = document.getElementsByClassName("custom-logo");
var iteration = element.length;
for( i=0; i<iteration; i++ ) {
element[i].setAttribute("data-pin-nopin", "true");
}
</script>
@media (max-width: 600px) {
.header-style-1 .top-header .os-col.left-col {
display: flex;
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 10px;
}
@h1dd3nsn1p3r
h1dd3nsn1p3r / rClone script to backup files to google drive
Last active March 7, 2024 03:32
rClone script to backup files to google drive. You need to have rclone installed in your server (https://rclone.org/install/). After installing an rclone configure Google Drive (https://rclone.org/drive/). You can call this script from Linux crontab
#!/bin/bash
##############################################################################
# An rclone bash script to backup files by Anuj Subedi ([email protected]).
#
# Copyright (C) 2020 Anuj Subedi <[email protected]>
#
# This script is licensed under the terms of the MIT license.
# https://opensource.org/licenses/MIT
#
@h1dd3nsn1p3r
h1dd3nsn1p3r / rClone script to backup files to Back Blaze B2
Created May 18, 2020 12:18
rClone script to backup files to Back Blaze B2. You need to have rclone installed in your server (https://rclone.org/install/). After installing an rclone configure Google Drive (https://rclone.org/drive/). You can call this script from Linux crontab
#!/bin/bash
##############################################################################
# An rclone backup script by Anuj Subedi ([email protected]).
#
# Copyright (C) 2020 Anuj Subedi <[email protected]>
#
# This script is licensed under the terms of the MIT license.
# https://opensource.org/licenses/MIT
#