Simple FAQ WordPress plugin
Simple FAQ gives you ability to create very simple FAQ on your site (questions and answers).
You can add question and answer using WordPress panel.
Read more on WordPress Simple FAQ plugin page.
Installation
- Unzip the package and upload the Simple FAQ directory into your wp-content/plugins directory of your WordPress installation.
- Activate the plugin at the plugin from plugins page.
- Put the short code [
display_faq] in your page.
Because that is general idea. If you want more functions – put post on forum and I’ll consider code improvement.
Screenshot
Example
- Sample question
Sample answer - What is Lorem Ipsum
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book - Sample question
Sample answer





Dec 10, 2010 @ 08:45:08
Good job. Simple solution, but is exactly what I was looking for.
Jan 15, 2011 @ 02:00:04
Nice site, nice and easy on the eyes and great content too.
Jan 26, 2011 @ 00:16:06
great plugin. how can i put hyperlinks in there? everytime i try to do that, it throws in extra “\\\\” please advise…thanks
Jan 30, 2011 @ 00:00:30
It’s a mistake in code, I’ll fix it in next release.
Jan 26, 2011 @ 00:59:09
i put the short code [display_faq] in my page, and i’m only seeing the short code itself instead of the faq. any ideas why?
Jul 10, 2011 @ 04:02:01
When you use the shortcode , make sure that you switch to the html view in your editor when you use the shortcode
Feb 10, 2011 @ 00:02:47
Hey there – I was having some issues with addslashes being applied, as well as found the question box to be so small, so I made some changes and published them on Github – they’re available here: https://github.com/pnomolos/SimpleFAQ
Feb 27, 2011 @ 21:51:41
I ussualy do not comment to posts but I will in this case, to give some credit. I will bookmark this
Apr 19, 2011 @ 12:20:35
hello
this error is occure
Parse error: syntax error, unexpected $end in D:serverxampphtdocsmywpwp-contentpluginssimple-faqfaq.php on line 300
May 12, 2011 @ 05:09:18
HI nice plug in but how can i add pagination to the plug in as i have a long list of FAQs
Jul 05, 2011 @ 15:35:54
can i display maximum 5 record then display next (pagination) for it.
Sep 16, 2011 @ 00:49:34
Hi. Thanks for your plugin – really useful.
Since I always test with debugging on, I noticed that, in the function faq_install(), the table creation code was causing some issues due to the picky syntax needed for dbDelta().
The following doesn’t cause any problems …
$sql = “CREATE TABLE ” . $table_name . ” (
id int(11) NOT NULL auto_increment,
author_id int(11) NOT NULL,
question_date date NOT NULL,
question text NOT NULL,
answer_date date NOT NULL,
answer text NOT NULL,
status tinyint(4) NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;”;
Thanks again, though. Paul