我不确定是否有可能,但是,我要做的是将WordPress标题分解为多个单词,然后插入一个图像。
我的电流回路工作正常。现在,它将获取页面的特征图像,然后显示页面标题:
<img>
WordPress Development
以下是循环:
$args = array(
\'post_parent\' => $page_id->ID,
\'showposts\' => $show,
\'post_type\' => \'page\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\'
);
$subpages = new WP_query($args);
if ($subpages->have_posts()) : while ($subpages->have_posts()) : $subpages->the_post();
$output .= \'<li><a href="\'.get_permalink().\'" class="\'.$page_id->post_name.\'-link"><div class="\'.$page_id->post_name.\'-info"><div class="\'.$page_id->post_name.\'-img">\'.get_the_post_thumbnail($page->ID,\'icons\').\'</div><h2>\'.get_the_title().\'</h2></div></a></li>\';
endwhile; endif;
wp_reset_postdata();
return $output;
我想做的是让put更像这样:
WordPress
<img>
Development
此循环中使用的所有页面标题都是2个单词。如果您有任何关于如何做到这一点的想法或建议,我们将不胜感激。