GC_Customize_Manager::has_published_pages()
最后更新于:2021-11-27 01:02:31
GC_Customize_Manager::has_published_pages()响应 whether there are published pages.
响应
(bool) Whether there are published (or to be published) pages.
源文件
文件: gc-includes/class-gc-customize-manager.php
public function has_published_pages() {
$setting = $this->get_setting( 'nav_menus_created_posts' );
if ( $setting ) {
foreach ( $setting->value() as $post_id ) {
if ( 'page' === get_post_type( $post_id ) ) {
return true;
}
}
}
return 0 !== count( get_pages() );
}