Last active
August 29, 2015 14:05
-
-
Save thierrypigot/95b7c0a0a757a7a3249f to your computer and use it in GitHub Desktop.
wp-sitemap-page.php
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 | |
extract( shortcode_atts( array( | |
'wsp_exclude_pages' => trim(get_option('wsp_exclude_pages')), | |
'wsp_exclude_cpt_page' => get_option('wsp_exclude_cpt_page'), | |
'wsp_exclude_cpt_post' => get_option('wsp_exclude_cpt_post'), | |
'wsp_exclude_cpt_archive' => get_option('wsp_exclude_cpt_archive'), | |
'wsp_exclude_cpt_author' => get_option('wsp_exclude_cpt_author') | |
), $atts ) ); | |
// Exclude some pages | |
// $wsp_exclude_pages = trim(get_option('wsp_exclude_pages')); | |
// $wsp_exclude_cpt_page = get_option('wsp_exclude_cpt_page'); | |
// $wsp_exclude_cpt_post = get_option('wsp_exclude_cpt_post'); | |
// $wsp_exclude_cpt_archive = get_option('wsp_exclude_cpt_archive'); | |
// $wsp_exclude_cpt_author = get_option('wsp_exclude_cpt_author'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment