在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 }}

来源:

https://www.srcmini02.com/64025.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_37530.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?