如何制作可重复使用的WordPress功能


How can I make a reusable WordPress function?

我有一个例程,它生成一个相关帖子的列表,用于single.php:

  //for use in the loop, list 5 post titles related to first tag on current post
  $tags = wp_get_post_tags($post->ID);
  if ($tags) {
      echo 'Related Posts';
      $first_tag = $tags[0]->term_id;
      $args=array(
        'tag__in' => array($first_tag),
        'post__not_in' => array($post->ID),
        'showposts'=>5,
        'caller_get_posts'=>1
       );
      $my_query = new WP_Query($args);
      if( $my_query->have_posts() ) {
        while ($my_query->have_posts()) : $my_query->the_post(); ?>
          <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
          <?php
        endwhile;
      }
    wp_reset_query();
   }

我需要做什么才能将其添加到function.php中,以便在WordPress帖子编辑器中调用此函数?

由于$post变量在WP中是全局的,您可以简单地执行以下操作:

function doStuff()
{
    global $post;
    $tags = wp_get_post_tags($post->ID);
    if ($tags) {
    echo 'Related Posts';
    $first_tag = $tags[0]->term_id;
    $args=array(
        'tag__in' => array($first_tag),
        'post__not_in' => array($post->ID),
        'showposts'=>5,
        'caller_get_posts'=>1
    );
    $my_query = new WP_Query($args);
    if( $my_query->have_posts() ) {
        while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
        <?php
        endwhile;
    }
    wp_reset_query();
    }
}

现在您可以简单地将<?php doStuff() ?>放入模板中。

但是,请注意,使用$post的函数只能在"循环"中使用。