最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Shortcode from a function not working

programmeradmin0浏览0评论

I am trying to create a shortcode from a custom function in WP but it seems like I'm doing something wrong.

I have a function in child's theme function.php and add_shortcode code:

function uniquetestfunction() {
echo '<div class="my_class">Test Element</div>';
}
add_shortcode(‘uniqueshortcodename’,’uniquetestfunction’); 

Which should generate a shortcode [uniqueshortcodename]. I have done this with existing functions in different plugins and it worked fine.

But when added to a page, it's not rendering the function, just showing the shortcode as a text. Any ideas what I'm doing wrong?

I'm very new to PHP :) Thanks

I am trying to create a shortcode from a custom function in WP but it seems like I'm doing something wrong.

I have a function in child's theme function.php and add_shortcode code:

function uniquetestfunction() {
echo '<div class="my_class">Test Element</div>';
}
add_shortcode(‘uniqueshortcodename’,’uniquetestfunction’); 

Which should generate a shortcode [uniqueshortcodename]. I have done this with existing functions in different plugins and it worked fine.

But when added to a page, it's not rendering the function, just showing the shortcode as a text. Any ideas what I'm doing wrong?

I'm very new to PHP :) Thanks

Share Improve this question asked May 1, 2019 at 13:48 jade newportjade newport 251 silver badge5 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

If you refer to the documentation for add_shortcode, you need your function to return the content:

function uniquetestfunction($attributes) {
   return '<div class="my_class">Test Element</div>';
}
add_shortcode('uniqueshortcodename','uniquetestfunction');

You also used the wrong quotes in your add_shortcode line - stick with single ' or double " quotes.

发布评论

评论列表(0)

  1. 暂无评论