This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
@simply copy the code and rename the "YOUR_SHORT_CODE_HERE" . | |
@ code by h1dd3n_sn1p3r | |
*/ | |
<?php echo do_shortcode('[YOUR_SHORT_CODE_HERE]');?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ini_set( 'upload_max_size' , '128M' ); | |
@ini_set( 'post_max_size', '128M'); | |
@ini_set( 'max_execution_time', '300' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php_value upload_max_filesize 128M | |
php_value post_max_size 128M | |
php_value max_execution_time 300 | |
php_value max_input_time 300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upload_max_filesize = 128M | |
post_max_size = 128M | |
max_execution_time = 300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
# |
OlderNewer