wordpress-关于点击日志标题跳转到外部链接的方法

zzbang [wordpress]

2009.01.03

其实真的不知道这个功能有什么用途,但是看到很多人提出来了,我想到这么个方法: 修改所使用的主题目录下的index.php文件, 找到这句, <h1 id=”post-<?php the_ID(); ?>”><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a></h1> 复制代码 替换成, <?php $id = intval($post->ID); $link_to = $wpdb->get_var(“SELECT meta_value FROM wp_postmeta WHERE meta_key = ‘linkto’ and post_id = $id”); ?> <?php if ($link_to) : ?> <h1 id=”post-<?php the_ID(); ?>”><a href=”<?php echo $link_to; ?>” rel=”bookmark” title=”Permanent [...]