{"id":11382,"date":"2025-03-12T09:00:00","date_gmt":"2025-03-12T08:00:00","guid":{"rendered":"https:\/\/wata.es\/?p=11382"},"modified":"2026-02-04T09:14:16","modified_gmt":"2026-02-04T08:14:16","slug":"php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist","status":"publish","type":"post","link":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/","title":{"rendered":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist)"},"content":{"rendered":"\n<p>Hey there, I\u2019m one of the WordPress and PHP enthusiasts at WATA Factory. Over the years, I\u2019ve watched WordPress evolve from a simple blogging platform into a powerhouse that can handle e-commerce sites, membership portals, media repositories, and so much more. If you\u2019re curious about how WordPress works behind the scenes\u2014or maybe you\u2019re a designer or content manager wanting to flex your technical muscles\u2014this post is for you!<\/p>\n\n<!--more-->\n\n<p>In this article, I\u2019ll walk you through why PHP is such a big deal in WordPress, how understanding the basics can help you (even if you\u2019re not coding full-time), and offer some easy-to-grasp examples that\u2019ll hopefully spark your interest in digging a little deeper. I\u2019ll also sprinkle in a few handy links to some of our other blog posts on related topics so you can continue your learning journey. Let\u2019s get started!<\/p>\n\n<h2 class=\"wp-block-heading\">1. A Quick Refresher: What\u2019s WordPress?<\/h2>\n\n<p>WordPress is often described as a Content Management System (CMS). Essentially, it\u2019s software that makes it easy to build and manage websites without needing a PhD in Computer Science. You can choose from thousands of themes, install plugins for practically any feature under the sun, and create pages and posts with minimal fuss.<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>For designers<\/strong>: This means you can focus on aesthetics, typography, and layout without wrestling with raw code day in and day out.<\/li>\n\n\n\n<li><strong>For content managers<\/strong>: It means you can upload and schedule content effortlessly, keep track of your SEO best practices, and handle user permissions without getting lost in the weeds of database queries.<\/li>\n<\/ul>\n\n<p>But behind all these user-friendly features is a powerful programming language called <strong>PHP<\/strong>. This is where things get interesting.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">2. PHP in a Nutshell<\/h2>\n\n<p>PHP (Hypertext Preprocessor) is a popular scripting language primarily used in web development. Think of it like the \u201cbrains\u201d that process user requests, query databases, and determine what content to serve up in your browser.<\/p>\n\n<h3 class=\"wp-block-heading\">Why PHP Matters<\/h3>\n\n<ul class=\"wp-block-list\">\n<li><strong>Server-Side Execution<\/strong>: While JavaScript usually runs in your browser, PHP does its work on the server. This means tasks like processing form submissions, interacting with databases, or generating dynamic content happen before the page even reaches your computer.<\/li>\n\n\n\n<li><strong>Wide Adoption<\/strong>: PHP powers a significant portion of the web\u2014WordPress being one of its most famous success stories. Its large community means it\u2019s well-documented, regularly updated, and has a wide ecosystem of tools and frameworks.<\/li>\n\n\n\n<li><strong>Easy to Learn, Hard to Master<\/strong>: PHP has a reputation for being relatively easy to pick up. However, truly mastering it (especially with modern frameworks and best practices) can take years.<\/li>\n<\/ul>\n\n<p>At WATA Factory, we work on a broad range of PHP-based projects, from WordPress websites to custom applications using frameworks like Symfony and Laravel. If you\u2019re curious about how we tackle modernization of older PHP projects, we\u2019ve covered that in a <a href=\"https:\/\/wata.es\/de\/modernisierung-von-php-legacy-projekten-durch-symfony\/\">blog post about modernizing <\/a><a href=\"https:\/\/wata.es\/de\/modernisierung-von-php-legacy-projekten-durch-symfony\/\">PHP legacy projects with Symfony<\/a>\u2014you can see how these different tools and frameworks all tie together in the broader PHP ecosystem.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">3. How PHP Powers WordPress<\/h2>\n\n<p>So, how exactly does PHP fit into WordPress? Here\u2019s the simplified breakdown:<\/p>\n\n<ol class=\"wp-block-list\">\n<li><strong>Core Files<\/strong>: WordPress itself is mostly written in PHP. Every time you install WordPress, you\u2019re downloading a collection of PHP files that handle user logins, post creation, media uploading, and more.<\/li>\n\n\n\n<li><strong>Themes<\/strong>: Your WordPress theme is also built using PHP. Those <code>.php<\/code> files you see in a theme folder (like <code>header.php<\/code>, <code>footer.php<\/code>, <code>functions.php<\/code>) determine your site\u2019s layout and functionality.<\/li>\n\n\n\n<li><strong>Plugins<\/strong>: Plugins extend WordPress, and guess what\u2014they\u2019re also primarily PHP-based. Whether it\u2019s an SEO plugin, a security plugin, or a contact form plugin, there\u2019s PHP code under the hood.<\/li>\n<\/ol>\n\n<p>Each time someone visits your site, WordPress\u2019s PHP files run on the server. They query the database (also typically MySQL or MariaDB, sometimes others), retrieve the right content, and package it into an HTML page that gets sent to the browser. For a deeper dive on databases, we have a new post about <a href=\"https:\/\/wata.es\/de\/nosql-datenbanken-eine-revolution-im-data-warehousing\/\">NoSQL Databases<\/a>\u2014a bit more advanced, but it shows the variety of database solutions you might run into in modern web development.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">4. Why Non-Developers Should Care<\/h2>\n\n<p>You might be thinking, \u201cI\u2019m not a coder, so why should I bother with all this PHP talk?\u201d Great question!<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Better Collaboration<\/strong>: Understanding the fundamentals of how PHP works in WordPress can help you communicate more effectively with developers. If you know what\u2019s happening behind the scenes, it\u2019s easier to explain a design element or bug you\u2019re seeing.<\/li>\n\n\n\n<li><strong>Troubleshooting<\/strong>: Often, WordPress errors might be something as simple as a missing semicolon or conflicting plugin. If you can glance at PHP error logs or know how to disable a problematic plugin temporarily, you can solve issues faster.<\/li>\n\n\n\n<li><strong>Site Performance<\/strong>: WordPress performance is heavily influenced by the efficiency of your PHP code. If you\u2019re a content manager, you might not write code, but knowing that large images or heavy plugins affect PHP\u2019s workload gives you insight into how to keep your site running smoothly.<\/li>\n\n\n\n<li><strong>Security Awareness<\/strong>: A big part of WordPress security involves understanding how plugins and themes interact with PHP. If you\u2019re aware of potential vulnerabilities, you\u2019ll make smarter decisions about what to install and update.<\/li>\n<\/ul>\n\n<p>Let\u2019s say you\u2019re a designer who wants to add a custom typeface or tweak the layout. You might dip into the <code>functions.php<\/code> file or install a plugin that modifies theme elements. Having a basic idea of the file structure and the role PHP plays helps you avoid inadvertently breaking something.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">5. A Tiny PHP Example<\/h2>\n\n<p>To keep things concrete, here\u2019s a <em>very<\/em> short snippet of what a basic PHP function might look like in a WordPress theme\u2019s <code>functions.php<\/code>:<\/p>\n\n<pre class=\"wp-block-preformatted\"><code>function watafactory_add_support() {<\/code>\n<code>    <\/code><code>\/\/ This enables featured images in a WordPress theme<\/code>\n<code>    <\/code><code>add_theme_support('post-thumbnails');<\/code>\n<code>    <\/code><code>\/\/ This adds custom logo support<\/code>\n<code>    <\/code><code>add_theme_support('custom-logo');<\/code>\n<code>}<\/code>\n<code>add_action('after_setup_theme', 'watafactory_add_support');<\/code><\/pre>\n\n<ul class=\"wp-block-list\">\n<li><strong>What it does<\/strong>: This little snippet tells WordPress your theme supports featured images and custom logos.<\/li>\n\n\n\n<li><strong>Why it matters<\/strong>: If you\u2019re a designer or content manager, you might want to ensure your posts have eye-catching featured images, or that you can easily upload a custom site logo from the WordPress dashboard. Knowing where and how this is done in PHP means you can quickly tweak your theme.<\/li>\n<\/ul>\n\n<p>Even if you don\u2019t fully understand every function here, grasping the gist that \u201cthis code block registers new features so WordPress can use them\u201d can be powerful.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">6. The Role of Plugins (and Why They\u2019re PHP-Driven)<\/h2>\n\n<p>Plugins are essentially mini-applications (written in PHP) that integrate seamlessly with WordPress. If you\u2019ve ever installed a form plugin like Contact Form 7 or an SEO plugin like Yoast, you\u2019ve experienced how plugins can expand WordPress\u2019s capabilities.<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>For Developers<\/strong>: Plugins offer an opportunity to build custom functionalities. If a client needs a special booking system or membership login, for example, we can code a plugin that fits right into WordPress\u2019s existing structure.<\/li>\n\n\n\n<li><strong>For Non-Developers<\/strong>: Installing a plugin is as easy as clicking \u201cAdd New,\u201d but understanding that PHP is under the hood can help you pick reputable plugins. Plugins are \u201cmini software,\u201d so you want well-coded and frequently updated ones.<\/li>\n<\/ul>\n\n<p>At WATA Factory, we\u2019ve also explored more in-depth WordPress tweaks\u2014like building custom blocks or hooking into WordPress\u2019s REST API. If you want to expand your WordPress knowledge further, you might enjoy reading our <a href=\"https:\/\/wata.es\/de\/einfuehrung-in-wordpress-page-builder-2025\/\">Introduction to WordPress Page Builders<\/a> or our follow-up piece on <a href=\"https:\/\/wata.es\/de\/die-wichtigsten-funktionen-und-moeglichkeiten-des-fuehrenden-wordpress-page-builders-im-jahr-2024\/\">Core Features and Capabilities of the Leading WordPress Page Builder in 2024<\/a>. These articles can help you see how developers and designers leverage plugins or page builder solutions for rapid site creation.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">7. Themes: The Intersection of Design &amp; PHP<\/h2>\n\n<p>When you install a WordPress theme, you\u2019re basically installing a collection of PHP templates that define how your site looks. Each page\u2014like your blog posts, your homepage, or your contact page\u2014has a corresponding PHP file that dictates its structure.<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>For Designers<\/strong>: This is where you live. Colors, fonts, imagery\u2014this is your playground. However, behind every color and font choice is a snippet of PHP telling WordPress \u201chey, display the site title here\u201d or \u201cgenerate a list of recent blog posts there.\u201d<\/li>\n\n\n\n<li><strong>For Content Managers<\/strong>: Ever wonder how your blog post content ends up styled a certain way? That\u2019s the theme\u2019s PHP template at work. Basic familiarity with these template files can help you request changes from developers more precisely.<\/li>\n<\/ul>\n\n<p>If you ever feel like taking a peek behind the curtain, you can open up a theme\u2019s <code>header.php<\/code>, <code>single.php<\/code>, or <code>footer.php<\/code> files. They may look a bit confusing at first, but after a few glances, you\u2019ll notice the pattern: HTML + some PHP snippets that dynamically pull in data like post titles, metadata, or your site\u2019s navigation menu.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">8. Performance &amp; Security Considerations<\/h2>\n\n<h3 class=\"wp-block-heading\">Performance<\/h3>\n\n<p>A well-optimized WordPress site can load quickly and handle tons of traffic. A poorly optimized one can buckle under the pressure.<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Caching<\/strong>: PHP code runs on the server each time a page is loaded. But caching plugins can store the finished HTML, reducing how often PHP files need to be executed. This means your site loads faster.<\/li>\n\n\n\n<li><strong>Code Quality<\/strong>: Clean, well-structured PHP code is easier to maintain and runs more efficiently. If you have dozens of poorly-coded plugins, you\u2019ll likely see performance hits.<\/li>\n<\/ul>\n\n<h3 class=\"wp-block-heading\">Security<\/h3>\n\n<p>PHP\u2019s flexibility is both a blessing and a curse. If not written securely, it can open up vulnerabilities.<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Updates<\/strong>: WordPress regularly releases updates to patch security issues. The same goes for themes and plugins. Keeping them updated ensures you\u2019re protected against known threats.<\/li>\n\n\n\n<li><strong>Quality Plugins<\/strong>: Not all plugins are created equal. Some might be poorly coded and leave your site open to attacks. Always choose reputable plugins with good reviews and frequent updates.<\/li>\n<\/ul>\n\n<p>For a broader sense of how we handle security and best practices in general, you might want to check out our <a href=\"https:\/\/wata.es\/de\/technologie\/\">Technology page<\/a>\u2014it\u2019s got more info on how we approach development and keep sites running securely at WATA Factory.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">9. Getting Comfortable with the Basics<\/h2>\n\n<p>Even if your main gig is design or content, you\u2019ll benefit from learning just a smidge of PHP. Here are some beginner-friendly action items:<\/p>\n\n<ol class=\"wp-block-list\">\n<li><strong>Tinker with a Local Environment<\/strong>: Set up a local WordPress install (using something like MAMP, WAMP, or Local by Flywheel). Poke around the theme files. Try adding a function or two to <code>functions.php<\/code>.<\/li>\n\n\n\n<li><strong>Read &amp; Watch Tutorials<\/strong>: There are countless YouTube channels and blogs dedicated to WordPress theme development. Start small\u2014like customizing your blog layout or adding a custom post type.<\/li>\n\n\n\n<li><strong>Practice Safe Experimentation<\/strong>: If you decide to play with code on a live site, make sure you have a backup or a staging environment in place.<\/li>\n\n\n\n<li><strong>Study Our Blog Posts<\/strong>: We frequently publish articles on everything from <a href=\"https:\/\/wata.es\/de\/einfuhrung-in-das-automatisierte-testing-mit-codeception-in-php-projekten\/\">automated testing in PHP projects<\/a> to advanced front-end frameworks. While not all of them are strictly about WordPress, they will help expand your understanding of modern PHP development practices.<\/li>\n<\/ol>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">10. Wrapping Up<\/h2>\n\n<p>Learning PHP basics is like finding the missing puzzle piece that lets you see the entire WordPress picture clearly. It\u2019s not just for developers; having a grasp of what\u2019s happening behind the scenes empowers designers, content managers, and site owners to make more informed decisions.<\/p>\n\n<p>I love that moment when our design team says, \u201cWe want this widget to appear here,\u201d and, as a developer, I can open up <code>sidebar.php<\/code> or <code>functions.php<\/code> to show them exactly which lines of code handle that. There\u2019s a sense of team synergy when non-developers feel confident enough to peek under the hood. You might not become a full-fledged PHP wizard overnight, but you\u2019ll certainly be able to hold your own in a conversation about how WordPress is structured.<\/p>\n\n<p>And if you ever need help\u2014from building custom themes and plugins to performing a site-wide performance audit\u2014remember that we at WATA Factory have your back. Our <a href=\"https:\/\/wata.es\/de\/\">main site<\/a> is a good starting point to see our services, and our <a href=\"https:\/\/wata.es\/de\/blog\/\">blog<\/a> is chock-full of insights on the latest in tech, including additional WordPress and PHP tips. Feel free to explore, leave a comment, or reach out if you\u2019d like a deeper dive into any topic.<\/p>\n\n<p>So go ahead\u2014pop open that <code>functions.php<\/code> file, install a test plugin, or read a few lines of code. You\u2019d be surprised at how quickly the basics become second nature. WordPress might be user-friendly by design, but a small slice of PHP knowledge can make you unstoppable in the world of content management and site design.<\/p>\n\n<p><strong>Happy WordPress-ing!<\/strong> If you have any questions or want to chat about all things PHP, don\u2019t hesitate to reach out. We love hearing your thoughts and geek out on new challenges every day.<\/p>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>Hey there, I\u2019m one of the WordPress and PHP enthusiasts at WATA Factory. Over the years, I\u2019ve watched WordPress evolve from a simple blogging platform into a powerhouse that can handle e-commerce sites, membership portals, media repositories, and so much more. If you\u2019re curious about how WordPress works behind the scenes\u2014or maybe you\u2019re a designer [&hellip;]<\/p>\n","protected":false},"author":28,"featured_media":15830,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[68,181],"tags":[185,300,324],"class_list":["post-11382","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-neuigkeiten","category-technologie","tag-php","tag-php-de","tag-wordpress-de"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory\" \/>\n<meta property=\"og:description\" content=\"Hey there, I\u2019m one of the WordPress and PHP enthusiasts at WATA Factory. Over the years, I\u2019ve watched WordPress evolve from a simple blogging platform into a powerhouse that can handle e-commerce sites, membership portals, media repositories, and so much more. If you\u2019re curious about how WordPress works behind the scenes\u2014or maybe you\u2019re a designer [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/\" \/>\n<meta property=\"og:site_name\" content=\"WATA Factory\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/watafactory\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-12T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-04T08:14:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Ralf Tenbrink\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@watafactory\" \/>\n<meta name=\"twitter:site\" content=\"@watafactory\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ralf Tenbrink\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"10\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/\"},\"author\":{\"name\":\"Ralf Tenbrink\",\"@id\":\"https:\\\/\\\/wata.es\\\/#\\\/schema\\\/person\\\/6d4a6a92d89cf43409b29b4d4aa2c9ce\"},\"headline\":\"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist)\",\"datePublished\":\"2025-03-12T08:00:00+00:00\",\"dateModified\":\"2026-02-04T08:14:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/\"},\"wordCount\":2105,\"publisher\":{\"@id\":\"https:\\\/\\\/wata.es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/PHP-and-WordPress-DE-scaled.webp\",\"keywords\":[\"php\",\"php\",\"wordpress\"],\"articleSection\":[\"Neuigkeiten\",\"Technologie\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/\",\"url\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/\",\"name\":\"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wata.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/PHP-and-WordPress-DE-scaled.webp\",\"datePublished\":\"2025-03-12T08:00:00+00:00\",\"dateModified\":\"2026-02-04T08:14:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/PHP-and-WordPress-DE-scaled.webp\",\"contentUrl\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/PHP-and-WordPress-DE-scaled.webp\",\"width\":2560,\"height\":1440,\"caption\":\"Illustration zur Webentwicklung mit Quellcode-Editor, HTML\\\/CSS-Dateien und Webseitenvorschau\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wata.es\\\/de\\\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wata.es\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wata.es\\\/#website\",\"url\":\"https:\\\/\\\/wata.es\\\/\",\"name\":\"WATA Factory\",\"description\":\"IT Consulting &amp; Outsourcing for your company\",\"publisher\":{\"@id\":\"https:\\\/\\\/wata.es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wata.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wata.es\\\/#organization\",\"name\":\"WATA Factory\",\"url\":\"https:\\\/\\\/wata.es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/wata.es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logowata.png\",\"contentUrl\":\"https:\\\/\\\/wata.es\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logowata.png\",\"width\":688,\"height\":176,\"caption\":\"WATA Factory\"},\"image\":{\"@id\":\"https:\\\/\\\/wata.es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/watafactory\\\/\",\"https:\\\/\\\/x.com\\\/watafactory\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wata\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wata.es\\\/#\\\/schema\\\/person\\\/6d4a6a92d89cf43409b29b4d4aa2c9ce\",\"name\":\"Ralf Tenbrink\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g\",\"caption\":\"Ralf Tenbrink\"},\"url\":\"https:\\\/\\\/wata.es\\\/de\\\/author\\\/r-tenbrink\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/","og_locale":"de_DE","og_type":"article","og_title":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory","og_description":"Hey there, I\u2019m one of the WordPress and PHP enthusiasts at WATA Factory. Over the years, I\u2019ve watched WordPress evolve from a simple blogging platform into a powerhouse that can handle e-commerce sites, membership portals, media repositories, and so much more. If you\u2019re curious about how WordPress works behind the scenes\u2014or maybe you\u2019re a designer [&hellip;]","og_url":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/","og_site_name":"WATA Factory","article_publisher":"https:\/\/www.facebook.com\/watafactory\/","article_published_time":"2025-03-12T08:00:00+00:00","article_modified_time":"2026-02-04T08:14:16+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp","type":"image\/webp"}],"author":"Ralf Tenbrink","twitter_card":"summary_large_image","twitter_creator":"@watafactory","twitter_site":"@watafactory","twitter_misc":{"Verfasst von":"Ralf Tenbrink","Gesch\u00e4tzte Lesezeit":"10\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#article","isPartOf":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/"},"author":{"name":"Ralf Tenbrink","@id":"https:\/\/wata.es\/#\/schema\/person\/6d4a6a92d89cf43409b29b4d4aa2c9ce"},"headline":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist)","datePublished":"2025-03-12T08:00:00+00:00","dateModified":"2026-02-04T08:14:16+00:00","mainEntityOfPage":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/"},"wordCount":2105,"publisher":{"@id":"https:\/\/wata.es\/#organization"},"image":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#primaryimage"},"thumbnailUrl":"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp","keywords":["php","php","wordpress"],"articleSection":["Neuigkeiten","Technologie"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/","url":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/","name":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist) - WATA Factory","isPartOf":{"@id":"https:\/\/wata.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#primaryimage"},"image":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#primaryimage"},"thumbnailUrl":"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp","datePublished":"2025-03-12T08:00:00+00:00","dateModified":"2026-02-04T08:14:16+00:00","breadcrumb":{"@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#primaryimage","url":"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp","contentUrl":"https:\/\/wata.es\/wp-content\/uploads\/2025\/03\/PHP-and-WordPress-DE-scaled.webp","width":2560,"height":1440,"caption":"Illustration zur Webentwicklung mit Quellcode-Editor, HTML\/CSS-Dateien und Webseitenvorschau"},{"@type":"BreadcrumbList","@id":"https:\/\/wata.es\/de\/php-und-wordpress-was-du-wissen-musst-auch-wenn-du-kein-entwickler-bist\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wata.es\/de\/"},{"@type":"ListItem","position":2,"name":"PHP und WordPress: Was du wissen musst (auch wenn du kein Entwickler bist)"}]},{"@type":"WebSite","@id":"https:\/\/wata.es\/#website","url":"https:\/\/wata.es\/","name":"WATA Factory","description":"IT Consulting &amp; Outsourcing for your company","publisher":{"@id":"https:\/\/wata.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wata.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/wata.es\/#organization","name":"WATA Factory","url":"https:\/\/wata.es\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/wata.es\/#\/schema\/logo\/image\/","url":"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png","contentUrl":"https:\/\/wata.es\/wp-content\/uploads\/2019\/12\/logowata.png","width":688,"height":176,"caption":"WATA Factory"},"image":{"@id":"https:\/\/wata.es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/watafactory\/","https:\/\/x.com\/watafactory","https:\/\/www.linkedin.com\/company\/wata\/"]},{"@type":"Person","@id":"https:\/\/wata.es\/#\/schema\/person\/6d4a6a92d89cf43409b29b4d4aa2c9ce","name":"Ralf Tenbrink","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/949386955220d94278016c59aa30abc16722fe6da07ad5c03ec46ab4d16318b4?s=96&d=mm&r=g","caption":"Ralf Tenbrink"},"url":"https:\/\/wata.es\/de\/author\/r-tenbrink\/"}]}},"_links":{"self":[{"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/posts\/11382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/comments?post=11382"}],"version-history":[{"count":5,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/posts\/11382\/revisions"}],"predecessor-version":[{"id":15833,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/posts\/11382\/revisions\/15833"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/media\/15830"}],"wp:attachment":[{"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/media?parent=11382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/categories?post=11382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wata.es\/de\/wp-json\/wp\/v2\/tags?post=11382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}