D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mybf1
/
www
/
sabun.bf1.my
/
wp-content
/
plugins
/
xml-sitemap-feed
/
models
/
Filename :
functions.sitemap-news.php
back
Copy
<?php /** * Filter news post types * * @since 5.0 * @param $post_types array * @return array */ function xmlsf_news_filter_post_types( $post_types ) { $post_types = (array) $post_types; unset( $post_types['attachment'] ); unset( $post_types['reply'] ); return array_filter( $post_types ); }