Tagged Questions
0
votes
1answer
46 views
Some problems calling a function into sprintf() inside functions.php template file [closed]
I am new in PHP and WordPress and I am personalizing an existent template and I have the following problem.
In the function.php file of the template I have the following function:
function ...
2
votes
2answers
187 views
Advantages and disadvantages of using automatic-feed-links
What are the advantages and disadvantages of using add_theme_support('automatic-feed-links') in my functions.php file?
0
votes
2answers
60 views
Post-thumbnail only for specific post-types?
I have this in my functions.php
add_theme_support( 'post-thumbnails' );
This means all my post-types (normal posts and custom-post-types) have post-thumbnails enabled.
Is it possible to just ...