That worked! Many a thanks Ajay 🙂
Hi,
Thanks for the replay. It did work, however I am getting that font icon for every widget title. How to only add to specific widget title i.e I only want to add to this plugin widget.
I used:
h1.widget-title:before {
Font-family: FontAwesome;
Content: "\f201";
}
When I inspect I found the title under this class –
<aside id="widget_tptn_pop-3" class="widget widget_widget_tptn_pop">
Please help.
Hi
I have replaced
query_posts(array('post__in' => $favorite_post_ids, 'posts_per_page'=> $post_per_page, 'orderby' => 'post__in', 'paged' => $page));
with:
query_posts(array('post__in' => $favorite_post_ids,'post_type' => 'any', 'posts_per_page'=> $post_per_page, 'orderby' => 'post__in', 'paged' => $page));
I am Can you please help me on understand –
$qry['post_type'] = array('post','page');
What should I add for custom post type?
Is it my theme’s page templete? What should I add there?
Thanks.