加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
footer.php 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
xiaoluan 提交于 2016-09-08 16:34 . 想把主题传到wordpress官网真难
<!-- footer.php -->
<div data-am-sticky="{animation: 'slide-top'}">
<button class="am-btn am-btn-success am-btn-block zeng-btn-block">
最新动态:
<?php $query = new WP_Query( array( 'post_type' => 'post','posts_per_page' => 3) ); ?>
<?php if($query->have_posts()): ?>
<?php while ($query->have_posts()) : $query->the_post();?>
<a href="<?php the_permalink();?>"><?php the_title();?></a>
<?php endwhile;?>
<?php endif; ?>
</button>
</div>
<!-- 回到顶部 -->
<div data-am-widget="gotop" class="am-gotop am-gotop-fixed" >
<a href="#top" title="回到顶部">
<img class="am-gotop-icon-custom" src="http://amazeui.b0.upaiyun.com/assets/i/cpts/gotop/goTop.gif" />
</a>
</div>
<!-- 回到顶部 -->
<!-- 尾部 -->
<footer class="blog-footer">
<small><?php bloginfo('name');echo ' · ';bloginfo('description'); ?></small><br />
<small><?php echo get_option('zh_cn_l10n_icp_num');?></small>
<small>基于<a href="http://amazeui.org/">妹子UI</a><a href="https://cn.wordpress.org/">wordpress</a></small>
</footer>
<!-- 尾部 -->
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1259788980'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1259788980' type='text/javascript'%3E%3C/script%3E"));</script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ;?>/assets/js/jquery.min.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ;?>/assets/js/amazeui.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ;?>/assets/js/handlebars.min.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ;?>/assets/js/amazeui.widgets.helper.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ; ?>/js/flowerflake.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ) ; ?>/js/jquery.transit.min.js"></script>
<!-- footer.php -->
<?php wp_footer();?>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化