如何自定义博客中的默认时间戳

How to customise the default time-stamp in blogger

我需要一些关于在 Blogger 中自定义时间戳的帮助。我在下面包含了时间戳的 html 编码:

  <div class='post-timestamp'>
    <b:if cond='data:top.showTimestamp'>
      <data:top.timestampLabel/>
      <b:if cond='data:post.url'>
        <meta expr:content='data:post.canonicalUrl' itemprop='url'/>
        <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
      </b:if>
 </b:if>
 </div>

理想情况下,我想从时间戳前面删除 "at" 一词。为了解决这个问题,我通过删除单词然后保存更改更改了 Dashboard > Layout > Main Edit 上的设置。然而,这似乎不适用于博客。

我遇到的第二个问题是,默认情况下,blogger 中的时间戳是 link 到博客 post 的直接 'represents'。我想删除直接 link。我尝试应用以下 css 编码:

.timestamp-link {
display: none!important;
 }

然而,这只会使时间戳消失。而我只想删除直接 link。

1) 要从时间戳中隐藏单词 'at',只需删除代码中的 <data:top.timestampLabel/>

2) Link 到 post 可以通过删除 <a> 标签内的 expr:href='data:post.url' 来移除。

 <div class='post-timestamp'>
    <b:if cond='data:top.showTimestamp'>
      <!--<data:top.timestampLabel/>  Remove this tag to hide 'at' from Time-Stamp -->
      <b:if cond='data:post.url'>
        <meta expr:content='data:post.canonicalUrl' itemprop='url'/>
        <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
        <!--delete expr:href='data:post.url' to remove link to the post-->
      </b:if>
     </b:if>
 </div>