wordpress – Užitečné pluginy

  1. Active Directory Integration – Allows WordPress to authenticate, authorize, create and update users through Active Directory
  2. ARYO Activity Log – Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out – it’s all these for you to see.
  3. Custom Background Extended – Allows users to create custom backgrounds for individual posts, which are displayed on the single post page. It works alongside any theme that supports the WordPress custom-background feature.
  4. Custom Meta Widget – Clone of the standard Meta widget with options to hide thlogin, admin, entry and comment feed, WordPress.org and /custom links.
  5. Idle Logout – Automatically logs out inactive users.

wordpress – Nastavení pozadí článku na základě ID rubriky a datumu

<? // Pozadi clanku$POZADI = „#FFFFFF“; // Hledam ID rubriky foreach((get_the_category()) as $kategorie) {     $VP_CAT_ID = $kategorie->cat_ID . ‚ ‚;}   // Porovnani datum prispevku a aktualni datumuif (get_the_date() == date(„j.n.Y“)) {     $POZADI = „#FCF8E2“;} // Porovnani ID rubriky prispevku s pozadovanym ID rubrikyif  ($VP_CAT_ID == 32) {     $POZADI = „#FFD9D9“;} ?> … nějaký kód…

wordpress – Migrace na jiný servery

Původní server Deaktivovat pluginy, které ovlivňují činnost systému, například: ARYO Activity Log Peter’s Login Redirect WP Security Audit Log Export databáze MySQL, například pomocí phpMyAdmin.   Nový server Vytvořit databázi MySQL Nainstalovat WordPress Import databáze z původního serveru Provést tyto SQL příkazy: UPDATE wp_posts SET guid = REPLACE(guid, ‚http://oldhost‚, ‚http://localhost‘); UPDATE wp_posts SET post_content =…