Strange font-style / font-weight on CPT list columns screen

This is happening because of this CSS rule that is generated in load-styles.php: .widefat thead th:last-of-type { -moz-border-radius-topright: 3px; -khtml-border-top-right-radius: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; } I’m not sure why this is here. To remove it, you should make a custom admin theme plugin to overwrite that CSS rule. First create a folder in your … Read more

Query the links Database

WordPress adds prefixes to tables names, which was setup on installation. So by default there is wp_ prefix for tables names. It means that by default table name for links will be wp_links. But you shouldn’t care about standard tables name, because all of them exists as parameters of wpdb class (read Table section), so … Read more