Skip to content

Instantly share code, notes, and snippets.

View anoopranawat's full-sized avatar

Anoop anoopranawat

View GitHub Profile
@anoopranawat
anoopranawat / wp-faqp-post-slug.php
Created November 15, 2016 06:17
Function to change the 'WP FAQ Pro' Post type Slug
<?php
// Function to change the `FAQ` post type slug
function wp_faqp_modify_faq_post_slug( $slug ){
$slug = 'sp_faq'; // Write your desired slug
return $slug;
}
add_filter( 'wp_faqp_post_slug', 'wp_faqp_modify_faq_post_slug' );
?>
@anoopranawat
anoopranawat / wphtsp-timeline-post-slug.php
Created October 17, 2016 06:39
Function to change the 'Timeline and History Slider Pro' Post type Slug
<?php
// Function to change the `Timeline and History Slider Pro` post type slug
function wphtsp_modify_timeline_post_slug( $slug ){
$slug = 'timeline_slider_slug'; // Write your desired slug
return $slug;
}
add_filter( 'wphtsp_post_slug', 'wphtsp_modify_timeline_post_slug' );
?>
@anoopranawat
anoopranawat / wpbaw-pro-blog-post-slug.php
Last active June 13, 2016 05:07
Function to change the `WP Blog and Widgets Pro` Post Type Slug
<?php
// Function to change the `WP Blog and Widgets Pro` post type slug
function wpbaw_pro_modify_news_post_slug( $slug ){
$slug = 'blog-post'; // Write your desired slug
return $slug;
}
add_filter( 'wpbaw_pro_blog_post_slug', 'wpbaw_pro_modify_news_post_slug' );
?>
@anoopranawat
anoopranawat / featured-img.php
Last active April 8, 2016 05:27
Display featured image box in a post if your theme does not support it.
<?php
// Function to change the `WP News and Five Widgets Pro` post type slug
function wpnw_pro_modify_news_post_slug( $slug ){
$slug = 'news'; // Write your desired slug
return $slug;
}
add_filter( 'wpnw_pro_news_post_slug', 'wpnw_pro_modify_news_post_slug' );