因此,我正在使用一个基于博客的主题。我有一些CSS和HTML的基本知识,但是相对来说还比较陌生。我正在使用的插件使用Wordpress博客页面。我的主题上有一些主题功能,我想带到插件上。通常来自管理区域的内容,例如标签/分类法,摘录,评级自定义字段。等等。我想知道这可能吗?
编辑:我要在插件上复制的代码
博客文章标签
public function garage_post_single_tags($post_id){
if (!in_array('single_tags', $this->evo_blog_settings())) { ?>
<div class="evo-post-tags evo-single-top">
<div class="evo-tags">
<?php
if ( 'post' == get_post_type() ) {
$tags_list = get_the_tag_list( '<ul><li>', ' </li><li>', '</li></ul>' );
if ( $tags_list ) {
$span = '<span class="evo-small-title">' . esc_html__('TAGS :', 'garage') . '</span>';
printf( '' . $span . '%1$s', $tags_list );
}
}
?>
</div><!-- evo-tags -->
博客文章摘录
public function garage_post_excerpt($excerpt ,$length){
$output = '';
$output .= '<p>';
$output .= wp_trim_words( $excerpt, $num_words = $length, $more = '...' );
$output .= '</p>';
return $output;
}