I think its a plugin “code snippet”. I’m currently using it code, but in function.php on child theme. Copy paste does not work because of the prevention against XSS, you must correct the quotation mark.
Single quote '
Of course its also can be added to on the original theme in function.php, but if theme is updated you need to add it again, that’s why child theme very important.
if this is not the problem,
Maybe, you should think to install the one-click child theme plugin.
Copy Paste now works,
function space_callback( $example ) {
$example = ''; // Maybe modify more else $example='Hi'
return $example; }
add_filter( 'user_profile_picture_description', 'space_callback' );
-
This reply was modified 5 years, 4 months ago by kayaalp.
-
This reply was modified 5 years, 4 months ago by kayaalp.
-
This reply was modified 5 years, 4 months ago by kayaalp.
-
This reply was modified 5 years, 4 months ago by kayaalp.