Created
February 24, 2018 06:18
-
-
Save anoopranawat/5cda6bf3b0d3c4dfc403bd866650cccd to your computer and use it in GitHub Desktop.
Add Custom Design to WP Responsive Recent Post Slider Pro Plugin for Carousel Sllider
This file contains hidden or 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 | |
/** | |
* Filter to add custom design in WP Responsive Recent Post Slider Pro - Carousel | |
*/ | |
function wpos_wprpsp_crousel_custom_designs( $design_arr ) { | |
$design_arr['custom-1'] = __('Custom Design 1', 'wp-responsive-recent-post-slider'), | |
return $design_arr; | |
} | |
add_filter( 'wprpsp_recent_post_crousel_designs', 'wpos_wprpsp_crousel_custom_designs' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment