php WordPress中自定义标题功能的示例实现。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress中自定义标题功能的示例实现。相关的知识,希望对你有一定的参考价值。
/**
* Sample implementation of the Custom Header feature.
*
* You can add an optional custom header image to header.php like so ...
*
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
</a>
<?php endif; // End header image check. ?>
*
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
*
* @package Humescores
*/
以上是关于php WordPress中自定义标题功能的示例实现。的主要内容,如果未能解决你的问题,请参考以下文章
PHP 在Wordpress中自定义内容
wordpress中自定义帖子类型的分页
在Wordpress中自定义阅读更多
WordPress 中自定义 wp_query 的分页需要 404 错误页面
如何:在wordpress中自定义帖子类型的自定义类别存档页面
谁在 wordpress 中自定义媒体 URL?