论文WP中选定页面上的自定义小部件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了论文WP中选定页面上的自定义小部件相关的知识,希望对你有一定的参考价值。
This code to be added to custom_functions.php May also need to add to custom.css to style your custom widget. (This code found towards the end of the article).
/* My Custom Widget */ 02. 03.add_action('widgets_init', 'my_text_widget_init'); 04. 05.function my_text_widget_init() { 06. register_sidebar_widget('My Custom Widget', 'my_text_widget'); 07.} 08. 09.function my_text_widget() { 10.if (is_page('about')) { 11.?> 12.<li class="widget"> 13. <div class="my_widget_header"> 14. <h3>Pacific Cruise Line</h3> 15. </div> 16.<div id="widget_content"> 17. <img class="widget_icon" src="<?php bloginfo('template_url'); ?>/custom/images/calendar_128.png" height="100px" alt="Coffee?" /> 18.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec mollis, turpis suscipit sodales congue, magna urna egestas erat, vitae pulvinar tortor lorem vitae dolor. Ut sed mauris nisi. 19.</div> 20.</li> 21.<?php 22.} 23.}
以上是关于论文WP中选定页面上的自定义小部件的主要内容,如果未能解决你的问题,请参考以下文章
在 thingsboard 上的自定义控件小部件仪表板上显示 thingsboard 设备属性最新值
使用 Qt Creator 中设计的自定义小部件将页面动态添加到 QStackedWidget
使用 OOP 插件/小部件和 WP_widget 扩展将 $wpdb 放在哪里