EVentuell passt das hier rein, ansonsten bitte verschieben.
Ich hab ebenfalls ne wordpresseite auf den PC kopiert, nur hab ich da nun 2 Probleme.
zum einen komm ich nicht ins backend, ich werd immer auf die onlineseite geleitet
zum anderen hab ich folgenden Fehlercode auf der Seite womit ich leider überhaupt nichts anfangen kann da ich kein php kann
Warning: Declaration of description_walker::start_el(&$output, $item, $depth, $args) should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = Array, $id = 0) in C:\XAMPP\htdocs\tillmann\www\wp-content\themes\robust\functions\theme-functions.php on line 463
Warning: Declaration of FreshThemes_Portfolio_Filter::start_el(&$output, $category, $depth) should be compatible with Walker_Category::start_el(&$output, $category, $depth = 0, $args = Array, $id = 0) in C:\XAMPP\htdocs\tillmann\www\wp-content\themes\robust\functions\theme-functions.php on line 489
class FreshThemes_Portfolio_Filter extends Walker_Category {
function start_el(&$output, $category, $depth, $args) {
$cat_name = esc_attr( $category->name);
$link = '<a href="#" data-option-value=".'.$category->slug.'">' . $cat_name . '</a>';
if ( 'list' == $args['style'] ) {
$output .= '<li';
$class = 'cat-item cat-item-'.$category->term_id;
if ( isset($current_category) && $current_category && ($category->term_id == $current_category) )
$class .= ' current-cat';
elseif ( isset($_current_category) && $_current_category && ($category->term_id == $_current_category->parent) )
$class .= ' current-cat-parent';
$output .= '';
$output .= ">$link\n";
}
else {
$output .= "\t$link<br />\n";
}
}
} ---> Das ist Line489
Alles anzeigen
class description_walker 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 ) .'"' : '';
$prepend = '<strong>';
$append = '</strong>';
$description = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';
if($depth != 0) {
$description = $append = $prepend = "";
}
$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
$item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append;
$item_output .= $description.$args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
} ----> Das ist Line 463
Alles anzeigen
Hatte jemand vielleicht schon mal dasselbe oder ein ähnliches problem und kann mir da weiterhelefn?