如何在WordPress中根据日期使标题变为粗体?


0

我有一个带静态首页的WordPress网站,它显示特色和最近的帖子....我没有使用任何小部件来实现这一点,只使用自定义主页模板。

我的要求是根据日期使帖子标题变粗,例如,我希望今天发布的帖子以粗体显示.....提前感谢


Answers:


0

我为你做了这个快速的javascript作为提示,

$('.date').each(function(){
  if($(this).text() == "03.03.03"){
    $(this).css('font-weight','bold');
  }
});

这里也是CodePen DEMO的演示

找到你需要的类或id,使它变得粗体; 你也没有提到你为我制作剧本的日期格式。希望这可以帮助。

干杯

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.