Title: WordPress Theme Development
Last modified: July 11, 2023

---

# WordPress Theme Development

 *  [dilhan](https://wordpress.org/support/users/dilhan/)
 * (@dilhan)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/wordpress-theme-development-11/)
 * Hi, I’m new to WordPress development. I’ve developed a custom WordPress theme
   and add some functionalities with the help of some plugins, but what I notice
   is, my theme is doesn’t work with many plugins, I know it’s not possible to work
   with any plugins, but for example plugin such as [https://wordpress.org/plugins/simple-social-buttons/](https://wordpress.org/plugins/simple-social-buttons/)
   doesn’t work with my theme, I checked the debug logs and found nothing, above
   example is only one, plugin, I found few other plugins which doesn’t work properly
   with my theme, how can I debug this issue and see what’s I’m doing wrong.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Moderator [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * (@bcworkz)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/wordpress-theme-development-11/#post-16887490)
 * Be sure your theme directly or indirectly fires the “wp_head” and “wp_footer”
   actions. Is your theme a block theme (.html templates) or a classic theme (.php
   templates)? Some older plugins might not be fully block theme compatible.
 * If you have trouble with compatibility with a particular plugin, the solution
   depends on what that plugin is expecting from a theme in order to work. You would
   either need to examine its source code or ask the plugin’s dev for advice.
 *  Thread Starter [dilhan](https://wordpress.org/support/users/dilhan/)
 * (@dilhan)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/wordpress-theme-development-11/#post-16888218)
 * Thanks for the reply. wp_head and wp_footer included in the header and footer
   like below.
 * header.php
 *     ```wp-block-code
         <?php wp_head(); ?>
       </head>
   
       <body>
         <?php wp_body_open(); ?>
       ```
   
 * footer.php
 *     ```wp-block-code
         </footer>
         <?php wp_footer(); ?>
       </body>
       </html>
       ```
   
 * Theme is a classic theme with .php templates. The plugins I tested are not old,
   I’m sure it’s something to do with my theme because I tested the same plugin 
   with official wp themes and they work very well with themes like 2023.
 *  Moderator [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * (@bcworkz)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/wordpress-theme-development-11/#post-16890271)
 * Have you made use of common template tags like `the_title(); the_content();`?
   They contain filters that plugins frequently use to achieve their functionality.
 * Plugins do things in many ways. If something isn’t working as expected, the cause
   will be as varied as plugins vary. You’d need to take each on a case by case 
   basis. For the social buttons plugin for example. If it’s not working for you,
   what to look for depends on where you’re trying to add the buttons. The plugin
   uses various techniques depending on where on the page the buttons should appear.
 * Try to determine from its source code how it injects buttons at the desired location
   and ensure your theme accommodates that technique. If you have difficulty deciphering
   the plugin’s code, you could seek guidance from its devs through its [dedicated support forum](https://wordpress.org/support/plugin/simple-social-buttons/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘WordPress Theme Development’ is closed to new replies.

## Tags

 * [plugin compatibility](https://wordpress.org/support/topic-tag/plugin-compatibility/)
 * [theme development](https://wordpress.org/support/topic-tag/theme-development/)

 * In: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
 * 3 replies
 * 2 participants
 * Last reply from: [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * Last activity: [2 years, 10 months ago](https://wordpress.org/support/topic/wordpress-theme-development-11/#post-16890271)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
