merhabalar google tools de data-vocabulary.orghatası alıyorum. hataya neden olan dosyaları tesbit ettim fakat schema.org nasıl dönüştüreceğimi tam olarak bilmiyorum. iki dosyada tesbit ettim post-navigation.php ve class-compatibility-bbpress.php bu konuda yardımcı olursanız sevinirim

<?php
/**
* BBPress compatibility class.
*
* @package the7
* @since 1.0.0
*/

// File Security Check
if ( ! defined( 'ABSPATH' ) ) { exit; }

if ( ! class_exists( 'Presscore_Modules_Compatibility_BBPress', false ) ) :

    class Presscore_Modules_Compatibility_BBPress {

        public static function execute() {
            if ( ! class_exists( 'bbPress', false ) ) {
                return;
            }
            
            add_action( 'get_header', array( __CLASS__, 'add_user_widget_area' ) );
            add_action( 'presscore_get_dynamic_stylesheets_list', array( __CLASS__, 'add_dynamic_stylesheets_action' ) );
            add_filter( 'presscore_get_page_title', array( __CLASS__, 'fix_page_title_filter' ), 20 );
            add_filter( 'presscore_hide_share_buttons', array( __CLASS__, 'hide_share_buttons_filter' ) );
            add_filter( 'presscore_get_breadcrumbs-html', array( __CLASS__, 'fix_breadcrumbs_filter'), 10, 2 );
            add_filter( 'bbp_no_breadcrumb', '__return_true', 20 );
        }
        
        public static function add_user_widget_area () {
            if(bbp_is_single_user()) {
                $config = presscore_config();
                $config->set( 'sidebar_position', 'right' );
                $config->set( 'footer_widgetarea_id', 'sidebar_1' );
            }
        }
        public static function add_dynamic_stylesheets_action( $dynamic_stylesheets ) {
            return array_merge(
                $dynamic_stylesheets,
                array(
                    'bb-press.less' => array(
                        'path' => PRESSCORE_THEME_DIR . '/css/compatibility/bb-press.less',
                        'src' => PRESSCORE_THEME_URI . '/css/compatibility/bb-press.less',
                        'fallback_src' => '',
                        'deps' => array(),
                        'ver' => THE7_VERSION,
                        'media' => 'all'
                    )
                )
            );
        }

        public static function fix_page_title_filter( $title ) {
            $new_title = $title;

            if ( function_exists( 'is_bbpress' ) ) {
                $new_title = is_bbpress() ? get_the_title() : $new_title;
            }
            return $new_title;
        }

        public static function hide_share_buttons_filter( $hide ) {
            if ( function_exists( 'is_bbpress' ) ) {
                return is_bbpress() ? true : $hide;
            }
            return $hide;
        }

        public static function fix_breadcrumbs_filter( $html = '', $args = array() ) {
            if ( function_exists( 'is_bbpress' ) && is_bbpress() && function_exists( 'bbp_get_breadcrumb' ) ) {

                remove_filter( 'bbp_no_breadcrumb', '__return_true', 20 );

                $html = bbp_get_breadcrumb( array(
                    'before' => $args['beforeBreadcrumbs'] . '<ol' . $args['listAttr'] . ' xmlns:v="http://rdf.data-vocabulary.org/#">',
                    'after' => '</ol>' . $args['afterBreadcrumbs'],
                    'sep' => $args['delimiter'] ? $args['delimiter'] : ' ',
                    'pad_sep' => false,
                    'sep_before' => '',
                    'sep_after' => '',
                    'crumb_before' => $args['linkBefore'],
                    'crumb_after' => $args['linkAfter'],
                    'current_before' => $args['before'],
                    'current_after' => $args['after'],
                ) );

                $html = str_replace( '<a ' , '<a' . $args['linkAttr'], $html );
                if ( $args['linkBefore'] && $args['before'] ) {
                    $html = str_replace( $args['linkBefore'] . $args['before'] , $args['before'], $html );
                }

                if ( $args['linkAfter'] && $args['after'] ) {
                    $html = str_replace( $args['linkAfter'] . $args['after'] , $args['after'], $html );
                }

                add_filter( 'bbp_no_breadcrumb', '__return_true', 20 );
            }
            return $html;
        }

    }

    Presscore_Modules_Compatibility_BBPress::execute();

endif;
-----------------------------------------
<?php
/**
* Post navigation helpers
*
* @package vogue
* @since 1.0.0
*/

if ( ! function_exists( 'presscore_get_next_post_link' ) ) :

    function presscore_get_next_post_link( $link_text = '', $link_class = '', $dummy = '' ) {
        $post_link = get_next_post_link( '%link', $link_text );
        if ( $post_link ) {
            return str_replace( 'href=', 'class="'. esc_attr( $link_class ) . '" href=', $post_link );
        }

        return $dummy;
    }

endif;

if ( ! function_exists( 'presscore_get_previous_post_link' ) ) :

    function presscore_get_previous_post_link( $link_text = '', $link_class = '', $dummy = '' ) {
        $post_link = get_previous_post_link( '%link', $link_text );
        if ( $post_link ) {
            return str_replace( 'href=', 'class="'. esc_attr( $link_class ) . '" href=', $post_link );
        }

        return $dummy;
    }

endif;

if ( ! function_exists( 'presscore_get_post_back_link' ) ) :

    function presscore_get_post_back_link( $text = '' ) {
        $url = apply_filters( 'presscore_post_back_link_url', presscore_config()->get( 'post.navigation.back_button.url' ) );
        if ( $url ) {
            return '<a class="back-to-list" href="' . esc_url( $url ) . '">' . $text . '</a>';
        }

        return '';
    }

endif;

if ( ! function_exists( 'presscore_post_navigation' ) ) :

    function presscore_post_navigation() {

        if ( ! in_the_loop() ) {
            return '';
        }

        $config = Presscore_Config::get_instance();

        $output = '';

        if ( $config->get( 'post.navigation.arrows.enabled' ) ) {
            $output .= presscore_get_previous_post_link( '', 'prev-post', '<a class="prev-post disabled" href="javascript:void(0);"></a>' );
        }

        if ( $config->get( 'post.navigation.back_button.enabled' ) ) {
            $output .= presscore_get_post_back_link();
        }

        if ( $config->get( 'post.navigation.arrows.enabled' ) ) {
            $output .= presscore_get_next_post_link( '', 'next-post', '<a class="next-post disabled" href="javascript:void(0);"></a>' );
        }

        return $output;
    }

endif;

if ( ! function_exists( 'presscore_new_post_navigation' ) ) :

    function presscore_new_post_navigation( $args = array() ) {
        if ( ! in_the_loop() ) {
            return '';
        }

        $defaults = array(
            'prev_src_text' => __( 'Previous post:', 'the7mk2' ),
            'next_src_text' => __( 'Next post:', 'the7mk2' ),
            'in_same_term' => false,
            'excluded_terms' => '',
            'taxonomy' => 'category',
            'screen_reader_text' => __( 'Post navigation', 'the7mk2' ),
        );
        $args = wp_parse_args( $args, $defaults );

        $config = presscore_config();
        $output = '';

        if ( $config->get( 'post.navigation.arrows.enabled' ) ) {
            $prev_text = '<i class="fa fa-angle-left" aria-hidden="true"></i>' .
             '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'the7mk2' ) . '</span>' .
             '<span class="screen-reader-text">' . esc_html( $args['prev_src_text'] ) . '</span>' .
             '<span class="post-title h4-size">%title</span>';

            // We use opposite order.
            $prev_link = get_previous_post_link(
                '%link',
                $prev_text,
                $args['in_same_term'],
                $args['excluded_terms'],
                $args['taxonomy']
            );
            $prev_link = str_replace( '<a', '<a class="nav-previous"', $prev_link );

            if ( ! $prev_link ) {
                $prev_link = '<span class="nav-previous disabled"></span>';
            }

            $output .= $prev_link;
        }

        if ( $config->get( 'post.navigation.back_button.enabled' ) ) {
            $output .= presscore_get_post_back_link( '<i class="fa fa-th" aria-hidden="true"></i>' );
        }

        if ( $config->get( 'post.navigation.arrows.enabled' ) ) {
            $next_text = '<i class="fa fa-angle-right" aria-hidden="true"></i>' .
             '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'the7mk2' ) . '</span>' .
             '<span class="screen-reader-text">' . esc_html( $args['next_src_text'] ) . '</span>' .
             '<span class="post-title h4-size">%title</span>';

            // We use opposite order.
            $next_link = get_next_post_link(
                '%link',
                $next_text,
                $args['in_same_term'],
                $args['excluded_terms'],
                $args['taxonomy']
            );
            $next_link = str_replace( '<a', '<a class="nav-next"', $next_link );

            if ( ! $next_link ) {
                $next_link = '<span class="nav-next disabled"></span>';
            }

            $output .= $next_link;
        }

        if ( $output ) {
            $output = '<nav class="navigation post-navigation" role="navigation"><h2 class="screen-reader-text">' . esc_html( $args['screen_reader_text'] ) . '</h2><div class="nav-links">' . $output . '</div></nav>';
        }

        return $output;
    }

endif;


//add_action( 'presscore_before_content', 'presscore_single_post_navigation_bar', 20 );

if ( ! function_exists( 'dt_get_next_page_button' ) ) :

    /**
     * Next page button.
     *
     */
    function dt_get_next_page_button( $max, $class = '' ) {
        if ( dt_get_next_posts_url( $max ) ) {

            $button_html_class = 'button-load-more';
            if ( presscore_is_lazy_loading() ) {
                $button_html_class .= ' button-lazy-loading';
                $caption = __( 'Loading...', 'the7mk2' );
            } else {
                $caption = __( 'Load more', 'the7mk2' );
            }
            $caption = apply_filters( 'dt_get_next_page_button-caption', $caption );
            $class = apply_filters( 'dt_get_next_page_button-wrap_class', $class );
            $icon = '<span class="stick"></span><span class="stick"></span><span class="stick"></span>';

            return '<div class="' . esc_attr( $class ) . '">
                <a class="' . esc_attr( $button_html_class ) . '" href="javascript:void(0);" data-dt-page="' . esc_attr( the7_get_paged_var() ) . '" >' . $icon . '<span class="button-caption">' . esc_html( $caption ) . '</span></a>
            </div>';

        }

        return '';
    }

endif;

if ( ! function_exists( 'presscore_get_breadcrumbs' ) ) :

    /**
     * Returns breadcrumbs html
     * original script you can find on http://dimox.net
     *
     * @since 1.0.0
     *
     * @param array $args
     *
     * @return string Breadcrumbs html
     */
    function presscore_get_breadcrumbs( $args = array() ) {
        $default_args = array(
            'text' => array(
                'home' => __( 'Home', 'the7mk2'),
                'category' => __( 'Category "%s"', 'the7mk2'),
                'search' => __( 'Results for "%s"', 'the7mk2'),
                'tag' => __( 'Entries tagged with "%s"', 'the7mk2'),
                'author' => __( 'Article author %s', 'the7mk2'),
                '404' => __( 'Error 404', 'the7mk2'),
            ),
            'showCurrent' => true,
            'showOnHome' => true,
            'delimiter' => '',
            'before' => '<li class="current">',
            'after' => '</li>',
            'linkBefore' => '<li typeof="v:Breadcrumb">',
            'linkAfter' => '</li>',
            'linkAttr' => ' rel="v:url" property="v:title"',
            'beforeBreadcrumbs' => '',
            'afterBreadcrumbs' => '',
            'listAttr' => ' class="breadcrumbs text-small"'
        );

        $args = wp_parse_args( $args, $default_args );

        $breadcrumbs_html = apply_filters( 'presscore_get_breadcrumbs-html', '', $args );
        if ( $breadcrumbs_html ) {
            return $breadcrumbs_html;
        }

        extract( array_intersect_key( $args, $default_args ), EXTR_OVERWRITE );

        $link = $linkBefore . '<a' . $linkAttr . ' href="%1$s" title="">%2$s</a>' . $linkAfter;

        $breadcrumbs_html .= '<div class="assistive-text">' . __( 'You are here:', 'the7mk2' ) . '</div>';

        $homeLink = trailingslashit( home_url() );
        global $post;

        $current_words_num = apply_filters( 'presscore_get_breadcrumbs-current_words_num', 5 );

        if (is_home() || is_front_page()) {

            if ($showOnHome) {
                $breadcrumbs_html .= '<ol' . $listAttr . '><a href="' . $homeLink . '">' . $text['home'] . '</a></ol>';
            }

        } else {

            $breadcrumbs_html .= '<ol' . $listAttr . ' xmlns:v="http://rdf.data-vocabulary.org/#">' . sprintf($link, $homeLink, $text['home']) . $delimiter;

            if ( is_category() ) {

                $thisCat = get_category(get_query_var('cat'), false);

                if ($thisCat->parent !== 0) {

                    $cats = get_category_parents($thisCat->parent, TRUE, $delimiter);
                    $cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
                    $cats = str_replace('</a>', '</a>' . $linkAfter, $cats);

                    if(preg_match( '/title="/', $cats ) ===0) {
                        $cats = preg_replace('/title=""/', 'title=""', $cats);
                    }

                    $breadcrumbs_html .= $cats;
                }

                $breadcrumbs_html .= $before . sprintf($text['category'], single_cat_title('', false)) . $after;

            } elseif ( is_search() ) {

                $breadcrumbs_html .= $before . sprintf($text['search'], get_search_query()) . $after;

            } elseif ( is_day() ) {

                $breadcrumbs_html .= sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
                $breadcrumbs_html .= sprintf($link, get_month_link(get_the_time('Y'),get_the_time('m')), get_the_time('F')) . $delimiter;
                $breadcrumbs_html .= $before . get_the_time('d') . $after;

            } elseif ( is_month() ) {

                $breadcrumbs_html .= sprintf($link, get_year_link(get_the_time('Y')), get_the_time('Y')) . $delimiter;
                $breadcrumbs_html .= $before . get_the_time('F') . $after;

            } elseif ( is_year() ) {

                $breadcrumbs_html .= $before . get_the_time('Y') . $after;

            } elseif ( is_single() && !is_attachment() ) {

                $post_type = get_post_type();
                $post_type_obj = get_post_type_object( $post_type );

                if ( $post_type !== 'post' ) {
                    if ( $post_type_obj ) {
                        $post_type_name = $post_type_obj->labels->singular_name;

                        if ( $post_type === 'dt_portfolio' ) {
                            $post_type_name_text = of_get_option( 'portfolio-breadcrumbs-text', '' );
                            if ( $post_type_name_text ) {
                                $post_type_name = apply_filters( 'wpml_translate_single_string', $post_type_name_text, 'dt-the7', 'portfolio-breadcrumbs-text' );
                            }
                        }

                        $breadcrumbs_html .= sprintf( $link, get_post_type_archive_link( $post_type ), esc_html( $post_type_name ) );
                    }

                    if ( $showCurrent ) {
                        $breadcrumbs_html .= $delimiter . $before . wp_trim_words( get_the_title(), $current_words_num ) . $after;
                    }
                } else {

                    $cat = get_the_category();
                    if ( $cat ) {
                        $cat = $cat[0];
                        $cats = get_category_parents($cat, TRUE, $delimiter);

                        if ( ! is_wp_error( $cats ) ) {
                            if (! $showCurrent) {
                                $cats = preg_replace("#^(.+)$delimiter$#", "$1", $cats);
                            }

                            $cats = str_replace('<a', $linkBefore . '<a' . $linkAttr, $cats);
                            $cats = str_replace('</a>', '</a>' . $linkAfter, $cats);

                            $breadcrumbs_html .= $cats;
                        }
                    }

                    if ($showCurrent) {
                        $breadcrumbs_html .= $before . wp_trim_words( get_the_title(), $current_words_num ) . $after;
                    }

                }

            } elseif ( !is_single() && !is_page() && get_post_type() !== 'post' && !is_404() ) {
                $post_type = get_post_type();
                $post_type_obj = get_post_type_object( $post_type );
                if ( $post_type_obj ) {
                    $post_type_name = $post_type_obj->labels->singular_name;
                    if ( $post_type === 'dt_portfolio' ) {
                        $post_type_name_text = of_get_option( 'portfolio-breadcrumbs-text', '' );
                        if ( $post_type_name_text ) {
                            $post_type_name = apply_filters( 'wpml_translate_single_string', $post_type_name_text, 'dt-the7', 'portfolio-breadcrumbs-text' );
                        }
                    }

                    $breadcrumbs_html .= $before . esc_html( $post_type_name ) . $after;
                }
            } elseif ( is_attachment() ) {

                if ($showCurrent) {
                    $breadcrumbs_html .= $delimiter . $before . wp_trim_words( get_the_title(), $current_words_num ) . $after;
                }

            } elseif ( is_page() && !$post->post_parent ) {

                if ($showCurrent) {
                    $breadcrumbs_html .= $before . wp_trim_words( get_the_title(), $current_words_num ) . $after;
                }

            } elseif ( is_page() && $post->post_parent ) {

                $parent_id = $post->post_parent;
                $breadcrumbs = array();

                while ($parent_id) {
                    $page = get_post($parent_id);
                    $breadcrumbs[] = sprintf($link, get_permalink($page->ID), get_the_title($page->ID));
                    $parent_id = $page->post_parent;
                }

                $breadcrumbs = array_reverse($breadcrumbs);

                for ($i = 0; $i < count($breadcrumbs); $i++) {

                    $breadcrumbs_html .= $breadcrumbs[$i];

                    if ($i != count($breadcrumbs)-1) {
                        $breadcrumbs_html .= $delimiter;
                    }
                }

                if ($showCurrent) {
                    $breadcrumbs_html .= $delimiter . $before . wp_trim_words( get_the_title(), $current_words_num ) . $after;
                }

            } elseif ( is_tag() ) {

                $breadcrumbs_html .= $before . sprintf($text['tag'], single_tag_title('', false)) . $after;

            } elseif ( is_author() ) {

                global $author;
                $userdata = get_userdata($author);
                $breadcrumbs_html .= $before . sprintf($text['author'], $userdata->display_name) . $after;

            } elseif ( is_404() ) {

                $breadcrumbs_html .= $before . $text['404'] . $after;
            }

            if ( get_query_var('paged') ) {

                $breadcrumbs_html .= $before;

                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) {
                    $breadcrumbs_html .= ' (';
                }

                $breadcrumbs_html .= __( 'Page', 'the7mk2' ) . ' ' . get_query_var('paged');

                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) {
                    $breadcrumbs_html .= ')';
                }

                $breadcrumbs_html .= $after;

            }

            $breadcrumbs_html .= '</ol>';
        }

        return apply_filters( 'presscore_get_breadcrumbs', $beforeBreadcrumbs . $breadcrumbs_html . $afterBreadcrumbs, $args );
    }

endif;

if ( ! function_exists( 'presscore_complex_pagination' ) ) :

    function presscore_complex_pagination( &$query ) {
        if ( $query ) {

            if ( presscore_is_load_more_pagination() ) {

                // load more button
                echo dt_get_next_page_button( $query->max_num_pages, 'paginator paginator-more-button with-ajax' );

            } else {

                $ajax_class = 'default' != presscore_get_config()->get( 'load_style' ) ? ' with-ajax' : '';

                // paginator
                dt_paginator( $query, array( 'class' => 'paginator' . $ajax_class ) );

            }

        }
    }

endif;

if ( ! function_exists( 'presscore_display_posts_filter' ) ) :

    function presscore_display_posts_filter( $args = array() ) {

        $default_args = array(
            'post_type' => 'post',
            'taxonomy' => 'category',
            'query' => null
        );
        $args = wp_parse_args( $args, $default_args );

        $config = presscore_get_config();
        $load_style = $config->get('load_style');

        // categorizer
        $filter_args = array();
        if ( $config->get( 'template.posts_filter.terms.enabled' ) ) {

            // $posts_ids = $terms_ids = array();
            $default_display = array(
                'select' => 'all',
                'type' => 'category',
                'terms_ids' => array(),
                'posts_ids' => array(),
            );
            $display = wp_parse_args( $config->get( 'display' ), $default_display );

            // categorizer args
            $filter_args = array(
                'taxonomy'    => $args['taxonomy'],
                'post_type'    => $args['post_type'],
                'select'    => $display['select'],
            );

            if ( 'category' == $display['type'] ) {

                $terms_ids = empty($display['terms_ids']) ? array() : $display['terms_ids'];
                $filter_args['terms'] = $terms_ids;

            } elseif ( 'albums' == $display['type'] ) {

                $posts_ids = isset($display['posts_ids']) ? $display['posts_ids'] : array();
                $filter_args['post_ids'] = $posts_ids;

            }
        }

        $filter_class = '';

        if ( $load_style && 'default' !== $load_style ) {
            $filter_class .= ' with-ajax';
        } else if ( $load_style ) {
            $filter_class .= ' without-isotope';
        }

        if ( ! $config->get( 'template.posts_filter.orderby.enabled' ) && ! $config->get( 'template.posts_filter.order.enabled' ) ) {
            $filter_class .= ' extras-off';
        }

        // Filter style.
        switch ( $config->get( 'template.posts_filter.style' ) ) {
            case 'minimal':
                $filter_class .= ' filter-bg-decoration';
                break;
            case 'material':
                $filter_class .= ' filter-underline-decoration';
                break;
        }

        // display categorizer
        presscore_get_category_list( array(
            // function located in /in/extensions/core-functions.php
            'data'    => dt_prepare_categorizer_data( $filter_args ),
            'class'    => 'filter' . $filter_class
        ) );
    }

endif;




iş olarak arkadaşımıza @ibocum; verildi