在WordPress主题中添加自定义Logo可以使用WordPress提供的函数——add_theme_support
。
使用方法如下:
1.在主题的 functions.php
文件中添加以下代码:
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 400,
'flex-width' => true,
'flex-height' => true,
) );
上述代码中,custom-logo
表示要支持添加自定义Logo,height
和 width
表示Logo的高度和宽度,可以根据自己的需要进行调整,flex-width
和 flex-height
表示Logo是否可以在用户自定义尺寸的情况下按比例缩放。
2.在主题的模板文件中添加以下代码来显示自定义Logo:
<?php
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
?>
上述代码中,the_custom_logo()
是一个WordPress提供的函数,用于显示自定义Logo。
示例代码已提供,无需更多说明。