php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor相关的知识,希望对你有一定的参考价值。
<?php
/**
* Override the Events List widget's / shortcode's "View More..." link
*
* For https://theeventscalendar.com/support/forums/topic/find-out-more-link/
* !!! Customize the URL inside esc_url() !!!
*
* @see tribe_events_get_list_widget_view_all_link
*
* @link https://gist.github.com/cliffordp/d5cade1485a3275b5e26669062481528
*/
function pascal_custom_find_out_more_link() {
return esc_url( 'https://www.google.com/' ); // customize this!!!
}
add_filter( 'tribe_events_get_list_widget_view_all_link', 'pascal_custom_find_out_more_link' );
以上是关于php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor的主要内容,如果未能解决你的问题,请参考以下文章
php 小部件中的小部件短代码
php 在文本小部件中启用短代码。
php 文本小部件中的短代码执行
允许在WordPress小部件中使用短代码
通过PHP代码小部件在侧边栏中列出即将发生的事件
覆盖对话框关闭时的QWidget事件?