您好,我对 wordpress 非常陌生,并且正在研究一个主题。这是一个视频主题,每个视频帖子上都有一些书签链接,当我点击任何视频时,这些书签会出现在这些帖子上。
但是在我的首页上,动态边栏(1)按顺序出现的最新视频帖子。我只想在显示视频的首页上添加这些书签链接,所以我必须更改一些 dynamic_sidebar(1) 代码,但我搜索了,我不知道它在哪里......所以帮助我(我知道这没什么大不了的)。
我想做什么......我试图在带有侧边栏的首页上实现相同的代码(我知道我很愚蠢):
作为
<div class="bookmark_links">
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
<?php if(get_post_meta($post->ID,'views_count',true)){?>
<span class="post-views" >
Total Views : <?php echo get_post_meta($post->ID,'views_count',true);?>
</span>
<?php }?>
<?php if(get_post_meta($post->ID,'twitter',true)){?>
<a href="<?php echo get_post_meta($post->ID,'twitter',true);?>" target="_blank" class="i_twitter"> <?php _e('Twitter','templatic');?> </a>
<?php }?>
<?php if(get_post_meta($post->ID,'facebook',true)){?>
<a href=" <?php echo get_post_meta($post->ID,'facebook',true);?>" target="_blank" class="i_facebook"> <?php _e('Facebook','templatic');?> </a>
<?php }?>
<div class="share">
<div class="addthis_toolbox addthis_default_style">
<a href="http://www.addthis.com/bookmark.php?v=250&username=xa-4c873bb26489d97f" class="addthis_button_compact sharethis"><?php _e('Share Video','templatic');?></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4c873bb26489d97f"></script>
</div>
请告诉我应该怎么做...任何帮助将不胜感激。