Skip to content

Instantly share code, notes, and snippets.

Created December 4, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/742b5903005266947df7 to your computer and use it in GitHub Desktop.
Save anonymous/742b5903005266947df7 to your computer and use it in GitHub Desktop.
<?php
WP_Customize_Manager->add_setting(); // fügt eine neue Funktion der Datenbank hinzu
WP_Customize_Manager->add_section(); // fügt eine enue Sektion/Gruppe zum Customizer hinzu
WP_Customize_Manager->add_control(); // installiert ein HTML Kontrollelement, um die Einstellungen zu setzen
WP_Customize_Manager->get_setting(); // kann dafür genutzt werden bereits existierende Einstellungen zu modifizieren
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment