菜单链接上的Timber哈希链接过滤器

时间:2017-02-07 21:46:52

标签: php wordpress filter twig timber

我正在使用Timber在WordPress中构建单页主题,但我对它有点新意,所以我对可能非常简单的事情有点迷失。我只想将链接转换为带有过滤器的哈希链接,但我甚至无法使过滤器无误地运行(我只是在下面添加它时会得到一个损坏的站点)。这是我的functions.php在我的主题(精确)中的样子:

 class SIDSite extends TimberSite {

        function __construct() {
            add_theme_support( 'post-formats' );
            add_theme_support( 'post-thumbnails' );
            add_theme_support( 'menus' );
            add_filter( 'timber_context', array( $this, 'add_to_context' ) );
            add_filter( 'get_twig', array( $this, 'add_to_twig' ) );
            add_action( 'init', array( $this, 'register_post_types' ) );
            add_action( 'init', array( $this, 'register_taxonomies' ) );
            add_filter( 'hash_link', array( $this, 'hash_link' ) ); // Added this
            parent::__construct();
        }

        function hash_link ($string) { // function I added, is probably not 100% right but I can't even debug it
            if(substr($string, 0, 1) === '/') {
                $string = substr($string, 1);
            }

            return '#' . $string;
        }
}

这是我的menu.twig文件:

{% if menu %}
    <ul>
    {% for item in menu %}
        <li class="{{item.classes | join(' ')}}">
            <a href="{{item.path | hash_link}}">{{item.title}}</a>
            {% include "menu.twig" with {'menu': item.get_children} %}
        </li>
    {% endfor %}
    </ul>
{% endif %}

我觉得我需要扩展其他内容,但是将我的过滤器添加到整个网站应该在我的脑海中起作用。我该怎么做才能阻止我的网站崩溃?

1 个答案:

答案 0 :(得分:1)

您关闭,问题是Twig过滤器与WP过滤器完全分开,因此您需要使用Twig注册yr过滤器,而不是WordPress。试试这个......

function add_to_twig( $twig ) {
    $twig->addFilter('hash_link', array( $this, 'hash_link' ));
    return $twig;
}

function hash_link( $string ) { /
    if(substr($string, 0, 1) === '/') {
        $string = substr($string, 1);
    }
    return '#' . $string;
}