Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter dbarodrigo

    (@dbarodrigo)

    Hi,

    Follow the code that I try edit to fix the problem with the title’s.

    global $post;
    $args = array(
    	'posts_per_page'	=>	$instance['post_num'],
    	'post_type' 		=> 'question',
    	'post_status'		=> 'publish',);
    $faqs = get_posts( $args );
    foreach( $faqs as $post ) :	setup_postdata($post);
    echo '<li><a href="'.get_permalink($post->ID).'" title="'.get_the_title($post->ID).'">'.get_the_title($post->ID).'</a></li>';

    Regards,

Viewing 1 replies (of 1 total)