1 Star 0 Fork 1

hzy46/reviews-wordpress

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
favorites_list.php 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2016-07-05 13:47 . init
<?php
/* Template Name: Favorites list (Only for Favorites plugin) */
?>
<?php get_header(); ?>
<!-- CONTENT -->
<div class="content">
<div class="clearfix">
<!-- Main Side -->
<div class="main-side page clearfix">
<div class="title"><h1><?php the_title(); ?></h1></div>
<article class="post" id="page-<?php the_ID(); ?>">
<?php $favorites = get_user_favorites();
if ( isset($favorites) && !empty($favorites) ) :
echo '<ul class="re-favorites-posts">';
foreach ( $favorites as $favorite ) :
echo '<li>';
echo '<a href="'.get_the_permalink($favorite).'" target="_blank">';
echo get_the_post_thumbnail($favorite, array( 50, 50));
echo get_the_title($favorite);
echo '</a>';
echo '</li>';
endforeach;
echo '</ul>';
endif; ?>
</article>
</div>
<!-- /Main Side -->
<!-- Sidebar -->
<?php get_sidebar(); ?>
<!-- /Sidebar -->
</div>
</div>
<!-- /CONTENT -->
<!-- FOOTER -->
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hzy46/reviews-wordpress.git
git@gitee.com:hzy46/reviews-wordpress.git
hzy46
reviews-wordpress
reviews-wordpress
master

搜索帮助