最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

I have inserted a post's content in homepage.php by the post-id. The font isn't matching with the theme. How do

programmeradmin0浏览0评论

The code added to get the specific post's content is as below. How can I style this content now?

if ( is_front_page()){
    $my_postid = 30;// Here 30 is my page id
    $content_post = get_post($my_postid);
    $content = $content_post->post_content;
    $content = apply_filters('the_content', $content);
    $content = str_replace(']]>', ']]>', $content);
    echo '<hr/>';
    echo $content;
    echo '<hr/>';
}
发布评论

评论列表(0)

  1. 暂无评论