Wieder was gelernt

Wordpress Evaluation

2023-03-08 (Wednesday)
Tags: wordpress

Quick You can get a functional website with a custom design relatively quickly, There's not much boilerplate, just write the templates. Awful data model Wordpress is primarily a blogging platform and the data model represents that. Anything which doesn't fit neatly into that model cannot be properly represented and has to be modelled as "posts" with "meta fields" No built-in support for custom fields These meta fields cannot be managed by Wordpress itself.

Wordpress Tips

2022-11-22 (Tuesday)
Tags: wordpress

If a new post type doesn’t show up, go to Settings → Permalinks and klick Save. Debugging in WordPress

Wordpress Snippets

2022-11-15 (Tuesday)
Tags: web wordpress php

Menus functions.php after_setup_theme: register_nav_menu('footerLocationTwo', 'Footer Location Two'); footer.php: <?php wp_nav_menu(array('theme_location' => 'footerLocationTwo')); ?>