2013-09-23 82 views
0

我想爲wordpress中的註冊用戶添加視頻教程到儀表板。我試過這個代碼:如何在wordpress中將視頻添加到儀表板

`<style type="text/css"> 
.postbox, 
.postbox div.handlediv, 
.postbox h3.hndle { 
    background: none; 
    border: none;      
}      
</style> 


<?php 

/* add content */ 
function customContent() { 
    echo ' http://www.youtube.com/watch?v=rArpyMXT2ew '; 
} 

/* add widget */ 
function add_customDashboardWidget() { 
    wp_add_dashboard_widget('wp_dashboard_widget', 'Custom Content', 'customContent'); 
} 

/* add action */ 
add_action('wp_dashboard_setup', 'add_customDashboardWidget'); 

?>` 

但它只顯示行,而不是實際的視頻。該怎麼辦?

+0

[在控制板視頻教程](http://wordpress.stackexchange.com/q/46445/12615)。 – brasofilo

+0

謝謝!只是它! – user2653883

回答

0

如果您不喜歡編碼,並且想要輕鬆添加更多視頻並調整哪些角色可以看到它們,我只是發佈了一個超級容易的插件。目前它輕巧簡單,但它絕對有訣竅。

https://wordpress.org/plugins/video-dashboard/

相關問題