mein Schulenglisch ist nun auch schon 25 Jahre her :mrgreen:
deutsch-modus an:
Answer: That’s a Wordpress related issue: In the file /wp-admin/admin-functions.php, the categories are limited to 100
in der datei:
wp-admin/admin-functions.php
sind die Kategorien auf 100 Stück begrenzt.
[URL="Answer:%20That%C3%A2%C2%80%C2%99s%20a%20Wordpress%20related%20issue:%20In%20the%20file%20/wp-admin/admin-functions.php,%20the%20categories%20are%20limited%20to%20100"]hier[/URL] steht erklärt, wie man das ändern kann!
englisches Zitat:
Zitat
In the admin-functions.php (in your wp-admin) folder find this:
function return_categories_list($parent = 0) {
global $wpdb;
return $wpdb->get_col("SELECT cat_ID FROM $wpdb->categories WHERE category_parent = $parent ORDER BY category_count DESC LIMIT 100");
deutsch-modus an:
in der datei: admin-functions.php und suche nach diesem code-schnipsel und änder ihn auf z.b. 200:
function return_categories_list($parent = 0) {
global $wpdb;
return $wpdb->get_col("SELECT cat_ID FROM $wpdb->categories WHERE category_parent = $parent ORDER BY category_count DESC LIMIT 200");
deutsch-modus aus :mrgreen: