我正在尝试将自定义徽标添加到我的 GatsbyJS 网站,但在 GraphQL 中查询徽标时遇到问题。该站点是使用 gatsby-source-graphql 和 WPGraphQL WordPress 插件构建的。我在我的 WordPress functions.php 中添加了主题支持,代码如下:
function tt_custom_logo_setup() {
$defaults = array(
'show_in_graphql' => true,
'hierarchical' => true,
'graphql_single_name' => 'Logo',
'graphql_plural_name' => 'Logoer',
);
add_theme_support( 'custom-logo', $defaults );
}
add_action( 'after_setup_theme', 'tt_custom_logo_setup' );
上传徽标后,我运行 gatsby clean 然后 gatsby develop 但徽标似乎没有显示在 GraphQL 中。我错过了什么??