php 覆盖父主题短代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 覆盖父主题短代码相关的知识,希望对你有一定的参考价值。
<?php
add_action('init', 'remove_parent_theme_shortcodes');
function remove_parent_theme_shortcodes() {
remove_shortcode( 'blog_posts' );
add_shortcode( 'blog_posts', 'blog_posts_custom' );
}
function blog_posts_custom($atts) {
echo 'test'
}
add_shortcode("blog_posts", "blog_posts_custom");
以上是关于php 覆盖父主题短代码的主要内容,如果未能解决你的问题,请参考以下文章
php 父母主题短代码
php 搜索图标短代码(必须激活BB主题)
php 在父页面上获取缩略图和列表中子页面标题的短代码
php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor
php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor
如何覆盖父对象的静态属性并让父对象访问 PHP 中的新值?