gpt4 book ai didi

php - wordpress 的自定义步行者菜单不起作用

转载 作者:行者123 更新时间:2023-12-03 19:50:43 25 4
gpt4 key购买 nike

在这里发布(而不是在 wordpress stackexchange 上)的原因是因为我觉得这可能与无效的 PHP 相关。似乎更多用户熟悉这里的 php 编码。

我有一个奇怪的问题,我无法通过媒体库将图像添加到帖子中。我可以上传图片,但 wordpress 不会在媒体库中显示之前上传的图片,因此我无法将其中任何图片插入到新帖子中。基本上媒体库不获取任何图像。

enter image description here

到目前为止,我发现这个问题是我的主题所特有的,并且删除了这一行:require get_template_directory() . '/inc/css_menu_walker.php';从我的functions.php 解决了这个问题。

但是我需要加载自定义 walker 来呈现菜单。那么这里有什么问题呢?据我所知,我已经正确加载了模板,但在 css_menu_walker.php 中找不到任何错误:

<?php
class CSS_Menu_Maker_Walker extends Walker {

var $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' );

function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "\n$indent<ul>\n";
}

function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul>\n";
}

function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {

global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;

/* Add active class */
if(in_array('current-menu-item', $classes)) {
$classes[] = 'active';
unset($classes['current-menu-item']);
}

/* Check for children */
$children = get_posts(array('post_type' => 'nav_menu_item', 'nopaging' => true, 'numberposts' => 1, 'meta_key' => '_menu_item_menu_item_parent', 'meta_value' => $item->ID));
if (!empty($children)) {
$classes[] = 'has-sub';
}

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

$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

$output .= $indent . '<li' . $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 .'><span>';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
$item_output .= '</span></a>';
$item_output .= $args->after;

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

function end_el( &$output, $item, $depth = 0, $args = array() ) {
$output .= "</li>\n";
}
}

我没有自己编写自定义步行者。我从这里得到的: http://cssmenumaker.com/blog/wordpress-3-drop-down-menu-tutorial似乎这个页面自 2013 年以来就没有更新过。这让我认为代码可能已经过时并且与当前版本的 wordpress 不兼容。

Wordpress 版本无所谓。我在 4.5.2 和 4.4.3 中也有同样的问题。

最佳答案

在我的functions.php中,我替换了:

// Include the custom walker navigation
require get_template_directory() . '/inc/css_menu_walker.php';


/**
* Custom walker navigation
*/
require get_template_directory() . '/inc/css-menu-walker.php';

这里完全不同: https://www.diffnow.com/?report=ba2d5

我之前也有一些缩进 <?php在我删除的 css-menu-walker.php 的开头。这解决了问题。

关于php - wordpress 的自定义步行者菜单不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37243749/

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