First Forums One more test forum Functions File

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1502
    Crumina team
    Keymaster

    A theme can optionally use a functions file, which resides in the theme subdirectory and is named functions.php. This file basically acts like a plugin, and if it is present in the theme you are using, it is automatically loaded during WordPress initialization (both for admin pages and external pages). Suggested uses for this file:

    #1503
    Crumina team
    Keymaster

    Enable Theme Features such as Sidebars, Navigation Menus, Post Thumbnails, Post Formats, Custom Headers, Custom Backgrounds and others.
    Define functions used in several template files of your theme.
    Set up an options menu, giving site owners options for colors, styles, and other aspects of your theme.

    #1504
    Crumina team
    Keymaster

    The default WordPress theme contains a functions.php file that defines many of these features, so you might want to use it as a model. Since functions.php basically functions as a plugin, the Function_Reference list is the best place to go for more information on what you can do with this file.

    #1505
    Crumina team
    Keymaster

    Note for deciding when to add functions to functions.php or to a specific plugin: You may find that you need the same function to be available to more than one parent theme. If that is the case, the function should be created in a plugin instead of a functions.php for the specific theme. This can include template tags and other specific functions. Functions contained in plugins will be seen by all themes

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.