この難問を解決してくれることを願っています...
ショートコードの投稿見出しの下に投稿カテゴリをリストするように、 Wordpress カテゴリ投稿リスト プラグインをカスタマイズしようとしています。
<a class="wp-cpl-info" href="<?php echo get_permalink($post->ID); ?>" title="<?php echo __('Permalink to: ', $trans) . $post->post_title; ?>">
<h2><?php echo get_the_title($post->ID); ?></h2>
<span class="cross">X</span>
<span class="details"><?php $categories = get_categories( $args ); ?></span>
</a>
現在のコードが置かれている場所に移動するWordpress php関数を見つけようとしています(これは単なる推測です)。プラグイン出力コードの残りの部分は、何が可能かを示しています...
<?php if($op['show_date'] == 'true' || $op['show_author'] == 'true' || $op['show_comments'] == 'true') : ?>
<div class="wp-cpl-sc-meta">
<p>
<?php if($op['show_date'] == 'true') : ?>
<span class="wp-cpl-sc-date"><?php echo __('Posted on ', $trans) . date('M jS, Y', strtotime($post->post_date)) . ' '; ?></span>
<?php endif; ?>
<?php if($op['show_author'] == 'true') : ?>
<span class="wp-cpl-sc-author"><?php echo __(' - By ', $trans) . '<a href="' . get_the_author_meta('user_url', $post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a> '; ?></span>
<?php endif; ?>
<?php if($op['show_comments'] == 'true') : ?>
<span class="wp-cpl-sc-comment"><?php echo ' - <a href="' . get_comments_link($post->ID) . '">' . $post->comment_count . ' ' . __ngettext('Comment', 'Comments', $post->comment_count, $trans) . '</a>' ?></span>
<?php endif; ?>
</p>
</div>
<?php endif; ?>
<?php if($op['show_excerpt'] == 'true') : ?>
<div class="wp-cpl-sc-entry">
<p>
<?php echo (('true' == $op['optional_excerpt'] && $post->post_excerpt != '')? $post->post_excerpt : itgdb_wp_cpl_loader::shorten_string($post->post_content, $op['excerpt_length'])); ?>
</p>
<?php if('' != $op['read_more']) : ?>
<p class="wp-cpl-sc-readmore">
<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $op['read_more']; ?></a>
</p>
<?php endif; ?>
</div>
このコードはすべて、プラグインの includes フォルダーにある wp_cpl_output_gen.php コードに属しています。
うまくいけば、これはすべて理にかなっています!基本的にはこのようなものを作成しているので、カテゴリを表示できるようにする必要があります。
ありがとうございます!
キャスリン