我有两个标签的代码
<li>
<a href="#gallery_place" role="tab" data-toggle="tab">
<i class="fa fa-picture-o"></i>
<?php _e("Gallery", ET_DOMAIN); ?>
</a>
</li>
<li>
<a href="http://romanianusa.com/post-place?id=<?php the_ID(); ?>">
<i class="fa fa-history"></i>
<?php _e("Repost", ET_DOMAIN); ?>
</a>
</li>
为什么第二个<li>
无法打开,Chrome会在底部显示我的链接,但是当我点击时无法打开该页面。有什么问题?
答案 0 :(得分:4)
如果函数the_ID()
返回ID,则需要使用echo
将ID添加到网址中:
<a href="http://romanianusa.com/post-place?id=<?php echo the_ID(); ?>">
答案 1 :(得分:0)
我解决了这个功能:
print frame
# player_id season_id game_id points mean_to_date
#0 200 21999 29900007 10 0
#1 200 21999 29900023 20 0
#2 200 21200 29900042 10 0
#3 200 21200 29900059 20 0
#4 200 21200 29900081 30 0
#5 300 21999 29900089 10 0
#6 300 22111 29900108 10 0
#7 300 22111 29900118 20 0
#8 300 22111 29900143 30 0
frame['mean_to_date'] = frame.groupby(['player_id','season_id']).apply(
lambda x: pd.expanding_mean(x['points'], 1).shift(1)
.fillna(0))
.reset_index(drop=True)
print frame
# player_id season_id game_id points mean_to_date
#0 200 21999 29900007 10 0
#1 200 21999 29900023 20 10
#2 200 21200 29900042 10 0
#3 200 21200 29900059 20 10
#4 200 21200 29900081 30 15
#5 300 21999 29900089 10 0
#6 300 22111 29900108 10 0
#7 300 22111 29900118 20 10
#8 300 22111 29900143 30 15
在我的 <script>
function openWindow()
{
window.open('http://romanianusa.com/post-place?id=<?php the_ID(); ?>');
}
</script>
<li>
非常感谢@Barmar