悬停帖子链接时获取自定义域

时间:2014-07-19 作者:user3612645

我有自定义页面,并获得一些帖子链接

if( $my_query->have_posts() ) {

  while ($my_query->have_posts()) : $my_query->the_post(); ?>

    <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" target="_blank"><?php echo str_replace($xx,\'\',get_the_title()); ?></a></li>

    <?php

  endwhile;

}
我想得到自定义字段(如描述,帖子图片)的帖子时,悬停的每一个链接的帖子,并把他们放在div (工具提示),我是为获取自定义字段创建新文件并使用ajax获取文件,还是使用wp\\u query调用来获取自定义字段?

<script type="text/javascript">
$(\'a[rel="bookmark"\')
  .mouseenter(function() {
    //     
   })
  .mouseleave(function() {
    //
   })
}
</script>

1 个回复
SO网友:karpstrucking

我只需将自定义字段放在<li><a> 然后使用首选的工具提示方法显示/隐藏它们,无论是CSS、JS还是两者的组合:

<?php

if( $my_query->have_posts() ) {
    while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <li>
            <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" target="_blank"><?php echo str_replace($xx,\'\',get_the_title()); ?></a>
            <div>description, post-image, etc go here</div>
        </li>
    <?php
    endwhile;
}
?>

结束