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 / 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>
<?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)
upload_max_filesize = 128M
post_max_size = 128M
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
@ini_set( 'upload_max_size' , '128M' );
@ini_set( 'post_max_size', '128M');
@ini_set( 'max_execution_time', '300' );
@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]');?>
@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 {