如果您不介意拆分管理,可以使用Google Docs Form.
Get answers to your questions
创建简单或深入的在线调查。通过链接共享它们,将它们嵌入到您的网站上,甚至直接嵌入到电子邮件中。
Sit back and watch the results come in
所有对您问题的回答都整齐地组织在谷歌电子表格中,因此排序和分析数据非常简单。
然后,就需要使用嵌入代码在页面/帖子中显示测验
:
还没有使用过,但是有一些interesting plugins 在WordPress中集成gDocs。
1 - Without splitting下面的方法只是一个随机的想法,可能有我不知道的缺点,但在我的测试中表现得很好。该代码将创建一个管理菜单项,用于在WordPress仪表板中嵌入对特定gDocument的编辑。仪表板中显示的是电子表格中测验的结果。表单编辑通过菜单完成Form (2)
(打开弹出窗口)。
<?php
/**
* Plugin Name: Embed gDocs in Admin
*/
add_action(\'admin_menu\', \'add_gdocs_menu_wpse_58332\');
function add_gdocs_menu_wpse_58332()
{
// Reference: http://codex.wordpress.org/Function_Reference/add_menu_page
add_menu_page(
\'gDocs\',
\'<span style="color:#000;">Google Docs</span>\',
\'edit_pages\',
\'gdocs\',
\'gdocs_iframe_wpse_58332\',
\'http://i.imgur.com/Vk42k.png\',
6 // position, just after Posts
);
}
/* Get the link in SHARING > LINK TO SHARE (allows editing) */
function gdocs_iframe_wpse_58332()
{
?>
<div class="wraper">
<iframe
src ="https://docs.google.com/spreadsheet/ccc?key=THE_DOCUMENT_KEY_HERE&usp=sharing"
width="100%" height="700" />
</div>
<?php
}
对于分数问题,this tutorial 具有电子表格公式解决方案。