Adding span tags within wp_list_pages list items

I am using this shortcode to produce a list of child pages of a specified parent. I would like to replace the list items default discs with a font awesome icon. According to the font awesome documentation it is done like this: <ul class=”fa-ul”> <li><span class=”fa-li”><i class=”fas fa-spinner fa-pulse”></i></span>replace bullets</li> </ul> And this is the … Read more

How can I list all pages with their templates?

I want to list all site pages with the template they use. Is there a mod to wp_list_pages which does this? 4 Answers 4 https://codex.wordpress.org/Function_Reference/get_page_template_slug a basic query to get all pages, sorted by title, then output page title and template file name: $args = array( ‘post_type’ => array( ‘page’ ), ‘order’ => ‘ASC’, ‘orderby’ … Read more