使用Wordpress中的页面为小部件供电

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Wordpress中的页面为小部件供电相关的知识,希望对你有一定的参考价值。

Using the ID of a page, you can get the content, the featured image and the title to power widgets in your template.
  1. <?php
  2.  
  3. //Use the Page Id
  4. $page_data = get_page(86);
  5.  
  6. $title = $page_data->post_title;
  7. $content = apply_filters('the_content', $page_data->post_content);
  8. $image = get_the_post_thumbnail($page_id);
  9. $link = preg_replace("/[^A-Za-z0-9]/","",$title);
  10.  
  11. echo '<a name="'.$link.'"></a>';
  12. echo '<h3>'.$title.'</h3>';
  13. echo $content;
  14. echo '<a href="'.get_option('siteurl').'/services/enquire?service='.$link.'">Enquire</a>';
  15.  
  16. ?>

以上是关于使用Wordpress中的页面为小部件供电的主要内容,如果未能解决你的问题,请参考以下文章

将 onClickListener 设置为小部件中的按钮 [重复]

在页脚区域中为小部件添加第四列

如何将页面的 slug 添加到 wordpress 小部件中的链接

根据 Flutter 中的选定类别为小部件元素分配不同的颜色

如何将页面的slug添加到wordpress小部件中的链接

是否可以为小部件设置标准样式?