get_page_permastruct(), '.html')) {
$wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html';
}
}
add_filter('user_trailingslashit', 'BGWEDDING_remove_slash', 66, 2);
function BGWEDDING_remove_slash($string, $type) {
global $wp_rewrite;
if ($wp_rewrite->using_permalinks() && $wp_rewrite->use_trailing_slashes == true && $type == 'page') {
return untrailingslashit($string);
} else {
return $string;
}
}
function BGWEDDING_activate() {
global $wp_rewrite;
if (!strpos($wp_rewrite->get_page_permastruct(), '.html')) {
$wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html';
}
$wp_rewrite->flush_rules();
}
function BGWEDDING_deactivate() {
global $wp_rewrite;
$wp_rewrite->page_structure = str_replace(".html", "", $wp_rewrite->page_structure);
$wp_rewrite->flush_rules();
}
?>