你可以加入the_content
过滤并在每篇帖子后添加您的注释。然后你可以把它设计成一个很好的引用。
add_filter(\'the_content\',\'add_my_note\');
function add_my_note($content){
// Write your note here
$note = \'
<div class="my-note">
<h3>Note Header</h3>
<p>Note body</p>
</div>\';
// Append the note to the content
$content = $content . $note;
// Return the modified content
return $content;
}
这会将注释添加到您的帖子内容中。现在是时候改变它了。
.my-note {
display:block;
background:lightgray;
border-width: 0 0 0 3px;
border-color:grey;
color:black;
border-style:solid;
padding: 1em;
}
.my-note h3 {
display:block;
font-size: 2em
}
.my-note p {
display:block;
font-size : 1em;
}
我为你做了一些基本的造型,你可以根据自己的口味来改变,