0

我想知道如何在创建帖子时定义帖子模板并自动添加 html 布局?

我必须使用自定义字段吗?

例如:

发布内容:

   Title
    Description 1
    Description 2
    With links and social media

Html 布局结果:

   <h1 class="work-title">Title</h1>
       <div class="description">Description 1</div>
       <div class="description">Description 2</div>
       <div class="details">With links and social media</div>
    </div> 

谢谢

4

1 回答 1

0

the_content()您可以通过使用 (in )来更改函数的输出,functions.php例如:

function alter_content($content) {
    // Alter the $content variable here
    return $content;
}

add_filter( 'the_content', 'alter_content', 6); 

这将在添加段落之前更改内容。如果您根本不想要段落,请使用:

remove_filter('the_content', 'wpautop');

查看apply_filters() 上的 codex 页面以获取有关该函数的更多信息。

于 2013-01-25T11:47:02.060 回答