利用习惯Walker
其实没那么难,基本上是这样的:
创建class;
类是使用这些变量的变量和函数的集合。
作者extending 另一个;
扩展类或派生类具有基类[…]的所有变量和函数以及您在扩展定义中添加的内容。
像这样:
class Extended_Class extends Base_Class {
// code
}
这使您可以更改/扩展
methods aka functions 已扩展的基类的。此外,您还可以通过向扩展类添加方法或变量来进行扩展。
要充分理解和利用这些可能性,有必要深入了解OOP: Classes and Objects PHP的各个方面。但这在这里太多了,无论如何都不是正确的地方所以让我们回到WordPress和wp_list_pages()
. 我们要扩展以使用的类wp_list_pages()
, 这个Walker_Page
类别-source -, 本身是通过扩展类派生的Walker
- source.
按照上述模式,我们将执行相同的操作:
class Wpse159627_Walker_Page extends Walker_Page {
// code
}
现在
Walker_Page
有两个变量-
$tree_type
和
$db_fields
- 和四种方法-
start_lvl()
,
end_lvl()
,
start_el()
和
end_el()
. 这些变量与我们无关,关于这些方法,我们至少需要仔细研究一下
start_el()
和
end_el()
.
首先要看到的是,这两种方法都有参数$page
:
@param object$页面数据对象。
包含我们需要的所有相关数据,如post_parent
, 而且几乎是WP_Post
/$post
/"$page
" 对象由get_pages()
return
包含与请求匹配的所有页面的数组,如果失败,则为false。返回的数组是“page”对象的数组。
inside 这个wp_list_pages()
作用
我们需要检查的是当前页面父级的post状态,为此函数get_post_status()
可用。像determined一样,我们可以使用可用的$page对象来执行此操作。
$page_parent_id = $page->post_parent;
$page_parent_status = get_post_status( $page_parent_id );
现在,我们可以使用它来检查当前页面父级的状态:
if ( $page_parent_status != \'draft\' ) {
// code
}
让我们在扩展的Walker类中实现它:
class Wpse159627_Walker_Page extends Walker_Page {
function start_el( &$output, $page, $depth = 0, $args = array(), $current_page = 0 ) {
$page_parent_id = $page->post_parent;
$page_parent_status = get_post_status( $page_parent_id );
if ( $page_parent_status != \'draft\' ) {
if ( $depth )
$indent = str_repeat("\\t", $depth);
else
$indent = \'\';
extract($args, EXTR_SKIP);
$css_class = array(\'page_item\', \'page-item-\'.$page->ID);
if( isset( $args[\'pages_with_children\'][ $page->ID ] ) )
$css_class[] = \'page_item_has_children\';
if ( !empty($current_page) ) {
$_current_page = get_post( $current_page );
if ( in_array( $page->ID, $_current_page->ancestors ) )
$css_class[] = \'current_page_ancestor\';
if ( $page->ID == $current_page )
$css_class[] = \'current_page_item\';
elseif ( $_current_page && $page->ID == $_current_page->post_parent )
$css_class[] = \'current_page_parent\';
} elseif ( $page->ID == get_option(\'page_for_posts\') ) {
$css_class[] = \'current_page_parent\';
}
$css_class = implode( \' \', apply_filters( \'page_css_class\', $css_class, $page, $depth, $args, $current_page ) );
if ( \'\' === $page->post_title )
$page->post_title = sprintf( __( \'#%d (no title)\' ), $page->ID );
$output .= $indent . \'<li class="\' . $css_class . \'"><a href="\' . get_permalink($page->ID) . \'">\' . $link_before . apply_filters( \'the_title\', $page->post_title, $page->ID ) . $link_after . \'</a>\';
if ( !empty($show_date) ) {
if ( \'modified\' == $show_date )
$time = $page->post_modified;
else
$time = $page->post_date;
$output .= " " . mysql2date($date_format, $time);
}
}
}
function end_el( &$output, $page, $depth = 0, $args = array() ) {
$page_parent_id = $page->post_parent;
$page_parent_status = get_post_status( $page_parent_id );
if ( $page_parent_status != \'draft\' ) {
$output .= "</li>\\n";
}
}
}
新类可用于
wp_list_pages()
像这样:
$args = array(
\'sort_column\' => \'menu_order\',
\'title_li\' => \'\',
\'post_status\' => \'publish\',
\'walker\' => new Wpse159627_Walker_Page
);
wp_list_pages( $args );
<小时>Edit:
出于完整性原因添加此项,以便使此项适用于树、所有子代,而不仅仅是子代。虽然这不是最好的方法,但已经提出了足够多的其他建议。
因为WordPress\'get_ancestors()
和get_post_ancestors()
函数不是用来获取草稿的,我构建了一个函数来获取每个祖先:
function wpse159627_get_all_post_ancestors( $post_id ) {
$post_type = get_post_type( $post_id );
$post = new WP_Query(
array(
\'page_id\' => $post_id,
\'include\' => $post_id,
\'post_type\' => $post_type,
\'post_status\' => \'any\',
\'cache_results\' => false,
\'update_post_meta_cache\' => false,
\'update_post_term_cache\' => false
)
);
$post = $post->posts[0];
if (
! $post
|| empty( $post->post_parent )
|| $post->post_parent == $post->ID
) {
return array();
}
$ancestors = array();
$id = $ancestors[] = $post->post_parent;
while (
$ancestor = new WP_Query(
array(
\'page_id\' => $id,
\'include\' => $id,
\'post_type\' => $post_type,
\'post_status\' => \'any\',
\'cache_results\' => false,
\'update_post_meta_cache\' => false,
\'update_post_term_cache\' => false
)
)
) {
$ancestor = $ancestor->posts[0];
if (
empty( $ancestor->post_parent )
|| ( $ancestor->post_parent == $post->ID )
|| in_array( $ancestor->post_parent, $ancestors )
) {
break;
}
$id = $ancestors[] = $ancestor->post_parent;
}
return $ancestors;
}
此外,有必要了解这些祖先的身份。可通过以下功能完成:
function wpse159627_get_all_status( $ids ) {
$status_arr = array();
foreach ( $ids as $id ) {
$post_type = get_post_type( $id );
$post = new WP_Query(
array(
\'page_id\' => $id,
\'include\' => $id,
\'post_type\' => $post_type,
\'post_status\' => \'any\',
\'cache_results\' => false,
\'update_post_meta_cache\' => false,
\'update_post_term_cache\' => false
)
);
$post = $post->posts[0];
$status_arr[] = $post->post_status;
}
return $status_arr;
}
这可用于替换上述条件:
$ancestors = wpse159627_get_all_post_ancestors( $page->ID );
$ancestors_status = wpse159627_get_all_status( $ancestors );
if ( ! in_array( \'draft\', $ancestors_status ) ) {
// code
}