php 创世纪入门页脚。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 创世纪入门页脚。相关的知识,希望对你有一定的参考价值。

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Remove the entry footer markup (requires HTML5 theme support)
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Remove the entry meta in the entry footer (requires HTML5 theme support)
remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Customize the entry meta in the entry footer (requires HTML5 theme support)
add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
function sp_post_meta_filter($post_meta) {
	$post_meta = '[post_categories] [post_tags]';
	return $post_meta;
}

以上是关于php 创世纪入门页脚。的主要内容,如果未能解决你的问题,请参考以下文章

php 创世纪:改变页脚

php 罗马数字短代码创世纪版权在页脚中

WP Twenty12主题宽度边栏页脚再次。第1部分:页脚.PHP

php代码干扰页脚上的html

创建 PHP 页眉/页脚

在 php 中添加页眉/页脚(初级查询)[关闭]