个性化阅读
专注于IT技术分析

在timber/twig主题中使用WordPress自定义标题图像

WordPress / Timber / Twig主题新手在这里。我想将主题自定义标题图像引入基于Timber的Twig主题中。我知道你需要绑定到主题定制器API并获得以下代码{{function(‘get_theme_mod’, ‘name’)}}, 但是我不知道如何使它适应自定义标题图像。

有什么建议或提示吗?


#1


我已经弄清楚了功能代码。我已经使用{{function(‘get_theme_mod’, ‘header_image’)}}访问了图像源, 但是现在我想知道如何使用Timber / Twig访问为自定义标题图像定义的替代文本。


#2


你可以使用以下方法从定制程序获取图像:

{{theme.theme_mod(‘header_image’)

如果要获取alt属性, 则可以创建一个过滤器, 以获取图像URL的alt属性。

首先, 在functions.php中创建一个函数:

public function altText( $url ) {
    $feature1_id = attachment_url_to_postid( $url );
    $image1_alt = get_post_meta( $feature1_id, '_wp_attachment_image_alt', true );

    return $image1_alt;
}

然后将其添加为过滤器:

$twig->addFilter( new Twig\TwigFilter( 'altText', array( $this, 'altText' ) ) );

然后在模板中使用它:

{{ theme.theme_mod('header_image') | altText }}
赞(0)
未经允许不得转载:srcmini » 在timber/twig主题中使用WordPress自定义标题图像

评论 抢沙发

评论前必须登录!