我真的不知道推文按钮下面的>
来自哪里:
http://alexchen.info/nojokethistime/
代码:
<?php while ( have_posts() ) : the_post(); ?>
<div class="content-block-2">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<div id="photo-credits">
<?php _e('Photo Credits: '); ?><a href="<?php echo get_post_meta($post->ID, 'rw_link', true); ?>"><?php echo get_post_meta($post->ID, 'rw_user', true); ?></a>
</div>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="prev"><?php next_posts_link( __( '← previous', 'twentyten' ) ); ?></div>
<div id="social-buttons">
<div id="tweet-button">
<?php echo tweetbutton(); ?>
</div>
<div id="fb-share"><?php if (function_exists('fbshare_manual')) echo fbshare_manual(); ?></div>
<div id=fb-like><iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=standard&show_faces=false&width=450&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:60px"></iframe></div>
</div>
<div id="next"><?php previous_posts_link( __( 'next →', 'twentyten' ) ); ?></div>
<?php endif; ?>
</div>
<?php endwhile; ?>
编辑:tweetbutton();
是Wordpress插件的功能。
这是它的输出:
<div id="tweet-button">
<div id="tweetbutton68m" class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Falexchen.info%2Fnojokethistime%2Ftaken-away%2F&text=Taken%20Away&related=&lang=en&count=horizontal&counturl=http%3A%2F%2Falexchen.info%2Fnojokethistime%2Ftaken-away%2F" class="twitter-share-button" style="width:55px;height:22px;background:transparent url('http://alexchen.info/nojokethistime/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat 0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>>
答案 0 :(得分:3)
它来自<?php echo tweetbutton(); ?>
内的某个地方。那里有什么?
请参阅已修改问题中tweetbutton
功能的输出:
Tweet</a></div>>
双>>
答案 1 :(得分:2)
看起来tweetbutton()
打印>
。
<div id="tweetbutton68m" class="tw_button" style="">
...
</div>>
答案 2 :(得分:2)
我认为它出现在<?php echo tweetbutton(); ?>
的代码中。当我查看您链接的页面的HTML源代码时,我看到了这一点(为了清楚起见,HTML注释是我自己的补充):
<div id="tweet-button">
<!-- begin <?php echo tweetbutton(); ?> -->
<div id="tweetbutton68m" class="tw_button" style="">
<a href="..." class="..." style="...">
Tweet
</a>
</div>>
<!-- ^^ end <?php echo tweetbutton(); ?> -->
</div>
在结束>
后查看额外的div
。
供将来参考:我只需在网络浏览器中查看网页来源,并在代码中搜索文字>>
,即可轻松发现这一点。
答案 3 :(得分:0)
看起来它来自tweetbutton()
内部。以下是标记的呈现方式:
<div class="tw_button" id="tweetbutton68m">
<iframe (bunch of stuff)></iframe>
</div>>
最后>
右侧有>
代码({{1}})