您可以使用Genesis挂钩编辑帖子页面(actions 和/或filters). 您可以在functions.php
文件或中的WordPress template file 位于子主题目录中。
如果使用模板文件,请添加genesis()
函数调用到该文件的末尾,然后在其上方执行操作并筛选调用。
例如,下面是single.php
子主题文件,用于更改帖子的默认帖子信息(署名)和帖子元(类别、标记等行)。
<?php
/** Customize the post info function. */
add_filter( \'genesis_post_info\', \'wpse_108715_post_info_filter\' );
/** Customize the post meta function. */
add_filter( \'genesis_post_meta\', \'wpse_108715_post_meta_filter\' );
genesis();
/**
* Change the default post information line.
*/
function wpse_108715_post_info_filter( $post_info ) {
$post_info = \'[post_author_posts_link] [post_date]\';
return $post_info;
}
/**
* Change the default post meta line.
*/
function wpse_108715_post_meta_filter( $post_meta ) {
$post_meta = \'[post_categories] [post_edit] [post_tags] [post_comments]\';
return $post_meta;
}
我用了这个帖子
shortcode functions 由Genesis在这些功能中提供。