admin管理员组

文章数量:1428870

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.

本文标签: phpShortcode from a function not working