The add-theme-support tag has no wiki summary.
0
votes
1answer
39 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 ...
0
votes
2answers
83 views
Add theme support custom header will not hide text?
I am having problems with add_theme_support('custom-header'); I can change the Header Text color but I can't hide my Header Text when I leave unchecked "Show header text with your image" inside admin ...
-3
votes
1answer
100 views
Theme Forest theme and how do I upload it to wordpress? [closed]
I bought a themeforest theme, modernize, which says it is a wordpress theme. How, in the good name of GOD, do I get it so I can begin setting up my wordpress pro site???It gives me the generic ...
0
votes
1answer
33 views
How can i display in themplate file only a few post
How guys , i my archive themplate i have 3 tipe of themes:
-poster
-complex
-simple
How can i display a certain number of post for arhive themes:
Ex: for my poster i want to display 24 posts(only ...
2
votes
2answers
168 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
1answer
60 views
How to add a font into a wordpress theme
I want to add a font into my theme. Please let me know if this is just as simple as uploading the font to a new folder named "fonts" and then changing the css and renaming the font-family property ...
0
votes
0answers
22 views
Issues with Mobile Device Display of Home Page with TwentyEleven [closed]
Mobile devices show all pages using TwentyEleven except for the home page. Can you help me understand what the problem might be? The site url is http://www.justbobimages.com
Robert Lott
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 ...
2
votes
1answer
87 views
How to add default images for custom backgrounds?
The custom header feature allows (in some code I have found) to suggest several default images to use in the custom header.
Could the same be built in the custom background?
The idea is to have ...
0
votes
2answers
305 views
add_theme_support( 'custom-header' ) does not add option menu in dashboard
I'm writing a new theme from scratch, based off the Toolbox theme. My installation of WP is straight out of the box. I added add_theme_support('custom-header'); to my functions.php file, but the ...
2
votes
1answer
71 views
check current_theme_supports in admin_menu hook
I'm adding a menu and sub-menus via the admin_menu hook in my functions.php. One of the sub-menus I want to add is menus.
I want to make sure that the theme supports menus before I do that, so I ...
0
votes
1answer
293 views
Add Post Format Support to Twentyeleven Child Theme
On a Twentyeleven child theme's functions.php file I attempted to add video post format support using:
add_theme_support('post-formats', array( 'aside', 'chat', 'gallery', 'image', 'link', 'quote', ...
1
vote
1answer
42 views
Is it better to create a function or a variable for current_theme_supports?
Well I just asking myself this, there are two ways I could implement this. What would be a better fit to coding standards?
Or is this just a a matter of personal like?
And what about php and memory, ...
1
vote
1answer
162 views
Remove Tag from theme support
I would remove Tag capability from classic Post type,
can I use remove_theme_support( $feature ); and how to do this ?
Thanks in advance
0
votes
2answers
159 views
add_theme_support( 'admin-bar' ) causes fatal error
I am trying to learn more on Theme Development so I've created my own and everything worked fine except when I added functions.php and tried to update it with something simple as:
<?php
...
