We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description
Update explicit update_option() calls in the theme with option_${option_name} filter hooks.
update_option()
option_${option_name}
Online-Child-Theme/includes/config.php
Lines 244 to 248 in 3509e6b
Why it's Important
To remove unneeded db calls.
Alternatives
n/a
Possible Implementation
Something like add_filter( 'option_ucf_tuition_fees_degree_plan_code_name', function() { return 'degree_code'; } );
add_filter( 'option_ucf_tuition_fees_degree_plan_code_name', function() { return 'degree_code'; } );
Additional context
The text was updated successfully, but these errors were encountered:
cjg89
jmbarne3
rjucf
cadie
No branches or pull requests
Description
Update explicit
update_option()
calls in the theme withoption_${option_name}
filter hooks.Online-Child-Theme/includes/config.php
Lines 244 to 248 in 3509e6b
Why it's Important
To remove unneeded db calls.
Alternatives
n/a
Possible Implementation
Something like
add_filter( 'option_ucf_tuition_fees_degree_plan_code_name', function() { return 'degree_code'; } );
Additional context
n/a
The text was updated successfully, but these errors were encountered: