当我们创建帖子并发布它时,我们会在帖子的底部得到一些这样的内容(发布日期:2015年8月8日/评论:2条评论/类别:视频)。我想为它添加另一个东西,比如eg(发表于:2015年8月8日/评论:2条评论/类别:视频/自拍链接)。
所以我在帖子中添加了一个名为Selfie_link的自定义字段。现在我想显示自拍链接的价值(这是一个网站的链接)我为每个帖子存储了不同的网址。
这是我的single.php(用于编辑单个帖子):
import sys
fname = sys.argv[1]
# list = [] -- not needed
output = "hashes.txt"
with open(fname) as f, open(output, 'w') as out:
num_line = 0
for line in f:
if line.strip():
num_line += 1
bits = line.strip().split(',')
try:
output_line = bits[1]
except IndexError:
print("Problem on line", line, num_line)
continue # skip the rest of the loop,
# go to the next line
if not num_line % 64:
out.write('{}\n\n'.format(output_line))
else:
out.write('{}\n'.format(output_line))
我的问题是我为自拍链接存储了值<?php
/**
* Wp in Progress
*
* @author WPinProgress
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* It is also available at this URL: http://www.gnu.org/licenses/gpl-3.0.txt
*/
get_header();
novalite_header_content();
?>
<!-- start content -->
<div class="container content">
<div class="row">
<div <?php post_class(array('pin-article', novalite_template('span') , novalite_template('sidebar'))); ?> >
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
do_action('novalite_postformat');
$mykey_values=get_post_meta($post->ID, 'Selfie_link', true);
echo '<ul>';
echo '<li>' . $name . '/' . $day .'</li>';
echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>';?>
<a href="<?php echo $mykey_values; ?>">Selfie Link</a>
<?php echo '</ul>';
?>
<div style="clear:both"></div>
</div>
<?php get_sidebar(); ?>
<?php endwhile; get_template_part('pagination'); endif;?>
</div>
</div>
<?php get_footer(); ?>
,当我点击自拍链接时,我会被重定向到此链接www.youtube.com
。
我以为我会被重定向到192.168.1.3/~user/urshow_news/2015/08/13/rter/www.youtube.com
。为什么会这样?