How can i appear(display) [question-list] in my themes?


asks
September 20, 2011

Hi Dave firs of all thnx for this wonderfull pluing , and sory for my bad english :)
İ want to display question list in themes sidebar . İs it possible?

This entry was posted in theme. Bookmark the permalink.

All Answers

  1. Dave says:

    It is possible but will involve a bit of coding. The shortcode calls the function q_list_questions which is in querys.php. In your theme you will need to make a similar call. You might want to read the wordpress.org documentation on shortcodes to see how the function expects the parameters to be passed.

    Also often sidebars are quite narrow in which case you may need additional styles to ensure it displays properly.

    You can also create your own function to display a list of question to better suit your needs. To do this you just want to query the wordpress posts table for posts with post type question.

    Hope this helps,
    Dave