gpt4 book ai didi

php - 根据 walker 内 wordpress 中的页面 ID 更改 CSS

转载 作者:行者123 更新时间:2023-11-28 10:48:41 32 4
gpt4 key购买 nike

目前我的functions.php中有

class Menu_With_Description extends Walker_Nav_Menu {
function start_el(&$output, $item, $depth, $args) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

$class_names = $value = '';

$classes = empty( $item->classes ) ? array() : (array) $item->classes;

$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
$class_names = ' class="' . esc_attr( $class_names ) . '"';

$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';

$attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
$attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : '';

$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
//$item_output .= '<span class="sub">' . $item->description . '</span>';
$item_output .= '<img src="' . $item->description . '" />';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;

$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}

目前在我的导航菜单上它可以完美地工作,因为我也希望它与我的主题一起使用,但是我想让它只检测页面“关于我们”并解析不同的代码集而不是语句。我尝试编写一个排除函数,然后在我的 header.php 上的 walker 语句之前解析我自己的代码,但效果不是很好。

最佳答案

你可以使用

if (is_page($page_id)) {//页面特定代码在这里。 }

$page_id 显然是您的“关于我们”页面。

wordpress codex

关于php - 根据 walker 内 wordpress 中的页面 ID 更改 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22870347/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com