Complete the code to add a filter that modifies the content.
add_filter('the_content', '[1]');
The the_content filter hook is used to modify post content before display. You need to pass the function name that will modify the content.
Complete the code to apply a filter to the post title.
add_filter('[1]', 'custom_title_filter');
The the_title filter hook allows you to modify the post title before it is displayed.
Fix the error in the filter hook to modify the excerpt.
add_filter('the_excerpt', [1]);
The function name must be passed as a string in quotes when adding a filter.
Fill both blanks to create a filter that changes the widget title with priority 15.
add_filter('[1]', '[2]', 15);
The widget_title filter modifies widget titles. You must provide the function name that changes the title.
Fill all three blanks to add a filter that modifies comment text with priority 20 and 2 accepted arguments.
add_filter('[1]', '[2]', 20, [3]);
The comment_text filter modifies comment text. Priority 20 means it runs later, and 2 means the function accepts two arguments.