/home/altere25/rmllproject.altereddigital.com/wp-content/plugins/siteseo-pro/main
NameSizeModeActions
settings/-0755rm
admin.php137470644editdlrm
ai.php93760644editdlrm
ajax.php235680644editdlrm
breadcrumbs.php78870644editdlrm
googlenews.php38600644editdlrm
install.php25150644editdlrm
llmtxtfile.php28230644editdlrm
plugin-update-checker.php538360644editdlrm
redirectmanager.php70630644editdlrm
registerblocks.php16120644editdlrm
rsssitemap.php71000644editdlrm
structureddata.php377360644editdlrm
tags.php141240644editdlrm
videositemap.php140320644editdlrm
Edit: /home/altere25/rmllproject.altereddigital.com/wp-content/plugins/siteseo-pro/main/llmtxtfile.php (2823B)
\n\n"; // Site Title, echo "# [" . esc_html(get_bloginfo('name')) . "](" . esc_url(home_url()) . ")\n"; $site_desc = !empty($siteseo->pro['llm_txt_web_desc']) ? $siteseo->pro['llm_txt_web_desc'] : get_bloginfo('description'); echo "> " . esc_html($site_desc); $numberposts = !empty($siteseo->pro['llm_txt_limt']) ? (int) $siteseo->pro['llm_txt_limt'] : 10; $post_types = !empty($siteseo->pro['llm_txt_posts']) ? $siteseo->pro['llm_txt_posts'] : []; // Post Types foreach($post_types as $post_type){ $posts = get_posts([ 'post_type' => $post_type, 'post_status' => 'publish', 'number' => $numberposts, 'order' => 'DESC', 'orderby' => 'date', 'has_password' => false, 'no_found_rows' => true, 'meta_query' => [ [ 'key' => '_siteseo_robots_index', 'compare' => 'NOT EXISTS' ] ] ]); // Post Type Name echo "\n\n## " . esc_html(ucfirst($post_type)) . "s"; foreach($posts as $post){ setup_postdata($post); // Post Types (Built-in + Custom) echo "\n- [**" . esc_html(get_the_title($post)) . "**]("; echo esc_url(get_permalink($post)) . ") : "; echo esc_html(str_replace(" […]", "...", html_entity_decode(wp_strip_all_tags(get_the_excerpt($post))))); } wp_reset_postdata(); } if(!empty($siteseo->pro['llm_txt_taxonomies'])){ echo "\n"; foreach($siteseo->pro['llm_txt_taxonomies'] as $taxonomy){ $terms = get_terms([ 'taxonomy' => $taxonomy, 'hide_empty' => true, 'exclude' => [1], 'number' => $numberposts, 'meta_query' => [ [ 'key' => '_siteseo_robots_index', 'compare' => 'NOT EXISTS', ] ] ]); if(empty($terms) || is_wp_error($terms)){ continue; } if(!empty($terms)){ echo "\n## " . esc_html(ucwords(strtolower(str_replace(['-', '_'], ' ', $taxonomy)))) . "\n"; } foreach($terms as $term){ echo "- [" . esc_html($term->name) . "](" .esc_html(get_term_link($term)). ")".(!empty($term->description) ? " : " . esc_html($term->description) : "") . "\n"; } } } exit; } }