You can use regular expression and the preg_replace_callback()
function:
function _make_khmer_link_replace_callback( array $matches ) {
return '<a' . $matches[1] . '>' . convert_numbers_to_khmer( $matches[2] ) . '</a>';
}
function make_khmer_link( $link ) {
if ( get_bloginfo( 'language' ) == 'km' ) {
$link = preg_replace_callback( '#<a(.*?)>(.+?)</a>#', '_make_khmer_link_replace_callback', $link );
}
return $link;
}
add_filter('get_archives_link', 'make_khmer_link');
PS: You can see the full code (including your existing function
s) at Pastebin.
Related Posts:
- remove empty paragraphs from the_content?
- Issues with title-tag and document_title_parts
- Set JPEG compression for specific custom image sizes
- Define custom Page Template without its own .php file
- How to reduce original image quality on upload?
- syntax for remove_filter in parent theme with class
- Add body class of category parent
- Convert hyphen to underscore in permalinks
- Override parent theme function that is not hooked or in the functions.php file
- Programmatically Add Font-Awesome Icons to Category Widget
- Remove bulk actions based on user role or capabilities
- How to override filter in child theme?
- Removing title from page
- Hide some items from Screen options in dashboard for products
- How to change a certain text or term of WordPress into a custom into the whole site?
- Adding body class when post contains a specific shortcode
- How to make unique add_filter to the_content of specific page template files – so each template gets its own addition
- Limit filter upgrader_post_install to a single plugin
- How to update feed only 2-3 times a week (for Feedburner email)?
- Manipulate Output of wp_list_something: select menu instead of li’s
- Gravity Forms field entries into wp_query loop [closed]
- Post Pagination Showing Same Posts Every Page
- Show excerpt for only first post in query
- How would go about if I just want a temporary function?
- Get current page_id before loop, in functions.php
- str_replace function in theme
- Can’t check if a post has thumbnail adding filter to get_post_metadata()
- Adding HTML to the end of every post with the Block Editor
- Modify a function without editing template
- How do I add Bootstrap and LESS to my migrated WordPress site?
- How to add nav menu items to a specific position within a menu
- Passing values from a widget to a function within a plugin
- Publish/Update post is changing image links from file url to post url
- Is possible add icon in title posts only in specific tag?
- Adding an external HTML link to a post thumbnail
- Replace a menu with widget or a custom template file programmatically
- woocommerce change currency per category [closed]
- wp_get_archives custom function broken since upgrading to WP 3.7.1
- Run wp_kses_decode_entities on atom feed?
- Filtering out the #more anchor link that gets produced by
- Can’t filter wp_get_attachment_link
- append to existing parent theme function
- Override the WordPress core function wp_referer_field
- Modify post filter to set custom number of posts per page and exclude child posts
- Make wp_link_pages() suitable for Twitter Bootstrap markup
- How to add custom JavaScript in functions?
- Setting a default text for excerpts of a particular category
- How to edit the Tags within the image file URLs?
- Add_filter when value is no variable?
- How to add_filter html template to middle of content
- Redefine function arguments before rendering
- How to edit classes in body tag?
- Possible to hook into Media Library preview File column and use a custom image?
- Combine embed_oembed_html and oembed_result
- login_headertitle is deprecated since version 5.2.0
- How to display the_archive_title() and the_archive_description() – “weird” interaction
- Filter to wp_list_authors
- Native gallery custom html output
- The_content and Preg_replace in loaded Iframe [closed]
- How to edit/replace Parent functions.php function in Child Theme to add “Walker” class
- Functions Filter Question [closed]
- Add Adsense code between job listings – wp job manager plugin
- Replace header image on all other pages but home – URL issue
- Any adverse effects of adding apply_filters to a function?
- Simplest Way to Build Custom Archives Page?
- Create a CUstom Archive by Year, but just for a Single Category
- how can I add filter in specfic field in my website?
- Adding custom social icons to the social media icon block in the Gutenberg editor?
- Customizing the wp_video_shortcode output with add_filter
- How to add HTML into error message
- Removing comment lines from all enqueued js files using a filter function
- post value to function with Ajax and jQuery
- How Do I Unhook This Parent Theme Function?
- Allow user only create specific tags
- Child theme remove parent filter in functions
- function replace_text for entire page
- add product thumbnail to checkout page only and include variation name
- Remove External Links from WordPress posts Using add_filter() in Theme functions.php
- Graphic before title – Specific Category
- Which method is more correct for removing WooCommerce Extensions menu item?
- Hide disclaimer from summary excerpts
- Only seems to be displaying one child when there are supposed to be multiple
- Best way to add image to recent posts widget?
- Why might wptexturize have become re-enabled?
- Shortcode to eliminate and replace with
- previous_post_link inside of a function?
- Search and Replace Script Loader in Head Only Works in Footer
- functions.php filters not applied in AJAX call
- Problem in outputting shortcode
- Settings in functions.php used by a plugin
- Show the post date using the wp_get_archives() function?
- How to Add A Rel Filter to All Links?
- Allow tags and attributes in post and pages content
- Override parent theme function that is not hooked or in the functions.php file
- child_of not working while searching
- Can’t change excerpt length and more tag
- How to Insert A List of Posts in A Category Written by the Author into the Author Archive
- Filter to strip unnecessary attributes
- function to show youtube videos within excerpt – if condition and apply_filters
- How can I modify or filter this variable in an existing class? (Mai Theme)