如何插入日历插件?
我已经安装了 WordPress 日历插件,并且我想(在页面的某个位置)添加此插件,而不将默认日历添加到小部件并将此小部件调用到页面(例如
我的意思是,喜欢将 SidebarEventsList()
用于 WP 事件日历插件
我该怎么做?我需要调用哪个方法?
按照 readme.txt 的说明尝试使用
<? {CALENDAR} ?>
,但出现错误解析错误:语法错误,意外的“}”
I have installed the WordPress Calendar plugins, and I'd like (in some point of the page) add this plugins, without add the default Calendar to a widget and call this widget to the page (such as <?php dynamic_sidebar( 'secondary-widget-area' ); ?>
).
I mean, like to use SidebarEventsList()
for the WP Events Calendar Plugins
How can I do it? Which method I need to call?
Tried with
<? {CALENDAR} ?>
as the readme.txt says, but I get an error Parse error: syntax error, unexpected '}'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在您想要的任何地方使用 短代码,请执行以下操作:
其中
CALENDAR
是您的短代码。只需在此处添加短代码,就像在 wp-admin 中一样。属性也是允许的。
To use shortcodes where ever you want you do this:
Where
CALENDAR
is your shortcode. Just add the shortcode in here like you would in the wp-admin.Attributes are also allowed.