将每个博客日期移至摘录的底部

时间:2015-06-10 17:39:59

标签: javascript jquery html css wordpress

在网站主页上,有一个网格部分,其中包含两个最新的博文。我需要Javascript将日期移动到每个块的底部(边框外)。链接是:http://abundancepractice-building.flywheelsites.com

这是结构:

<div class="et_pb_column et_pb_column_4_4">
  <div class="et_pb_blog_grid_wrapper">
    <div class="et_pb_blog_grid clearfix et_pb_bg_layout_light blog-section" style="position: relative; height: 400px;">

    <article id="post-226" class="et_pb_post et_pb_no_thumb post-226 post type-post status-publish format-standard hentry category-uncategorized" style="position: absolute; left: 0px; top: 0px;">


      <h2><a href="http://abundancepractice-building.flywheelsites.com/what-you-learned-in-grad-school-is-ruining-your-website-and-10-ways-to-fix-it/">What You Learned In Grad School is Ruining Your Website (and 10 ways to fix it)</a></h2>

        <p class="post-meta">  Jun 5, 2015  </p>Blog excerpt text...        
    </article> <!-- .et_pb_post -->

因此需要将p.post-meta附加到块的底部。我不是Javascript专家,但这是我到目前为止所做的:

jQuery(function($){
$( ".post-meta:nth-child(1)" ).appendTo(".et_pb_post.et_pb_no_thumb:nth-    child(1)");
$( ".post-meta:nth-child(2)" ).appendTo(".et_pb_post.et_pb_no_thumb:nth-child(2)");
});

jQuery(function($){

if ($('body').hasClass('et_pb_blog_grid')) {
$('.et_pb_post p')
.each(function() {
  var n = jQuery(this).find(".post-meta").html();
  $(n).clone().insertAfter(jQuery(this).find('.et_pb_post.et_pb_no_thumb'));
});
}

});

1 个答案:

答案 0 :(得分:1)

没有必要使用javascript来执行此操作。

只需编辑模板并移动

即可
<?php the_excerpt(); ?> 

到发布日期之前。

编辑:

在wp管理区域中打开您的主页,并记下它使用的模板名称。

然后在您的主题文件夹中搜索您的模板文件,该名称应显示为:

<?php
/*
  Template Name: Homepage
 */
?>

这将是您需要修改的文件