使用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.
<?php //Use the Page Id $page_data = get_page(86); $title = $page_data->post_title; $content = apply_filters('the_content', $page_data->post_content); $image = get_the_post_thumbnail($page_id); echo '<a name="'.$link.'"></a>'; echo '<h3>'.$title.'</h3>'; echo $content; echo '<a href="'.get_option('siteurl').'/services/enquire?service='.$link.'">Enquire</a>'; ?>
以上是关于使用Wordpress中的页面为小部件供电的主要内容,如果未能解决你的问题,请参考以下文章
将 onClickListener 设置为小部件中的按钮 [重复]
如何将页面的 slug 添加到 wordpress 小部件中的链接