我正在为我的博客使用报纸主题。我想在某些类别中创建帖子亮点。例如,在此url中:https://blog.bookingtogo.com/category/destinasi/wisata-domestik/pulau-bali/
我想在类别内容之后或帖子内容之前插入此代码。
我试图从管理面板插入快捷代码:post>;类别(>);巴厘岛。但不起作用。
这是我编写的代码:
function balihighlight(){
$post = get_post( 2183 );
$title = $post->post_title;
$excerpt = get_the_excerpt($post);
$excerpt = substr( $excerpt, 0, 260 );
$result = substr( $excerpt, 0, strrpos( $excerpt, \' \' ) );
?>
<style>
.container{
position: relative;
text-align: center;
color: black;
}
.highlight{
position: absolute;
background-color:yellow;
margin-left: 25px;
margin-top: 10px;
width: 148px;
left: -25px;
font-weight: bold;
}
</style>
<div class="td_module_11 td_module_wrap td-animation-stack">
<div class="container">
<div class="td-module-thumb">
<?php echo get_the_post_thumbnail( $post,\'medium\' ); ?>
</div>
<div class="highlight">HIGHLIGHT</div>
</div>
<div class="item-details">
<h3 class="entry-title td-module-title">
<a href="https://blog.bookingtogo.com/destinasi/tempat-wisata-di-bali/" title="<?php echo $title; ?>"><?php echo $title; ?></a>
</h3>
<div class="td-excerpt">
<?php echo $result; ?>
</div>
<div class="td-read-more">
<a href="https://blog.bookingtogo.com/destinasi/tempat-wisata-di-bali/">Read more</a>
</div>
</div>
</div>
<?php
}
add_shortcode(\'balihighlight\', \'balihighlight\');
是否有任何钩子可以将此代码插入类别内容之后或帖子内容之前?信息:我的巴厘岛分类id是:284。我希望我能找到解决方案,非常感谢。