Skip to content

Instantly share code, notes, and snippets.

View ThomasKujawa's full-sized avatar

Thomas Kujawa ThomasKujawa

View GitHub Profile
@ThomasKujawa
ThomasKujawa / sortable-tag-count.php
Last active January 2, 2024 19:00
Sortable Tag Count Column
<?php
/**
* Plugin Name: Sortable Tag Count
* Plugin URI: https://www.fachkraeftesicherer.de
* Description: Adds a sortable column to the posts and pages admin with the tag count.
* Author: <a href="https://thomas.fachkraeftesicherer.de" target="_blank">Thomas</a> und <a href="https://www.thomaszwirner.de/" target="_blank">Thomas</a>
* Author URI: https://thomas.fachkraeftesicherer.de
* Version: 1.0.3
* Requires PHP: 8.0
* Text Domain: sortable-tag-count
@ThomasKujawa
ThomasKujawa / functions.php
Created April 12, 2024 08:56
Wordpress: Stati der Beiträge farblich hervorheben
add_action('admin_footer','posts_status_color');
function posts_status_color(){
?>
<style>
.status-draft{background: #fc9 !important;}
.status-pending{background: #cff !important;}
.status-publish{/* so lassen wie es ist */}
.status-future{background: #cf9 !important;}
.status-private{background:#f99;}
</style>