论文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).
  1. /* My Custom Widget */
  2. 02.
  3. 03.add_action('widgets_init', 'my_text_widget_init');
  4. 04.
  5. 05.function my_text_widget_init() {
  6. 06. register_sidebar_widget('My Custom Widget', 'my_text_widget');
  7. 07.}
  8. 08.
  9. 09.function my_text_widget() {
  10. 10.if (is_page('about')) {
  11. 11.?>
  12. 12.<li class="widget">
  13. 13. <div class="my_widget_header">
  14. 14. <h3>Pacific Cruise Line</h3>
  15. 15. </div>
  16. 16.<div id="widget_content">
  17. 17. <img class="widget_icon" src="<?php bloginfo('template_url'); ?>/custom/images/calendar_128.png" height="100px" alt="Coffee?" />
  18. 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. 19.</div>
  20. 20.</li>
  21. 21.<?php
  22. 22.}
  23. 23.}

以上是关于论文WP中选定页面上的自定义小部件的主要内容,如果未能解决你的问题,请参考以下文章

在 thingsboard 上的自定义控件小部件仪表板上显示 thingsboard 设备属性最新值

使用 Qt Creator 中设计的自定义小部件将页面动态添加到 QStackedWidget

使用 OOP 插件/小部件和 WP_widget 扩展将 $wpdb 放在哪里

更改页面javascript代码(TamperMonkey)以将键盘笔触发送到父DOM

dojo 小部件不会发出事件

Servicenow:表格中的自定义附件小部件未在提交时上传文档