Skip to content

Commit

Permalink
Update class-ttveditor-settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
rmens authored Oct 27, 2024
1 parent 311ee8d commit cd62c72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions includes/class-ttveditor-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function create_admin_page()
{
?>
<div class="wrap">
<h1>Tekst TV Editor Hacks Settings</h1>
<h1>Tekst TV Editor Hacks</h1>
<form method="post" action="options.php">
<?php
settings_fields('ttveditor_option_group');
Expand Down Expand Up @@ -86,15 +86,15 @@ public function page_init()
// Character Limits Section
add_settings_section(
'ttveditor_character_limits_section', // ID
'Character Limits', // Title
'Limieten', // Title
'__return_false', // Callback
'ttveditor-settings' // Page
);

// Title Soft Limit
add_settings_field(
'soft_limit_title',
'Title Soft Limit',
'Zachte limiet kpo',
array($this, 'soft_limit_title_callback'),
'ttveditor-settings',
'ttveditor_character_limits_section'
Expand All @@ -103,7 +103,7 @@ public function page_init()
// Title Hard Limit
add_settings_field(
'hard_limit_title',
'Title Hard Limit',
'Harde limiet kop',
array($this, 'hard_limit_title_callback'),
'ttveditor-settings',
'ttveditor_character_limits_section'
Expand All @@ -112,7 +112,7 @@ public function page_init()
// Textarea Soft Limit
add_settings_field(
'soft_limit_textarea',
'Textarea Soft Limit',
'Zachte limiet tekst',
array($this, 'soft_limit_textarea_callback'),
'ttveditor-settings',
'ttveditor_character_limits_section'
Expand All @@ -121,7 +121,7 @@ public function page_init()
// Textarea Hard Limit
add_settings_field(
'hard_limit_textarea',
'Textarea Hard Limit',
'Harde limiet tekst',
array($this, 'hard_limit_textarea_callback'),
'ttveditor-settings',
'ttveditor_character_limits_section'
Expand Down

0 comments on commit cd62c72

Please sign in to comment.