{"id":126,"date":"2026-08-18T13:16:32","date_gmt":"2026-08-18T13:16:32","guid":{"rendered":"http:\/\/localhost\/eu-blog\/?p=126"},"modified":"2026-08-18T13:16:35","modified_gmt":"2026-08-18T13:16:35","slug":"testing-02","status":"publish","type":"post","link":"https:\/\/luxservice.eu\/blog\/testing-02\/","title":{"rendered":"Testing 02"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">&lt;a href=&#8221;&lt;?php echo esc_url($blog_url); ?&gt;&#8221; class=&#8221;btn-ghost-kernel&#8221;&gt;Browse all articles&lt;\/a&gt; How can I modify the $vblog_url??<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you mean <strong>\u201chow do I change the value of <code>$blog_url<\/code>?\u201d<\/strong>, you need to assign a different URL to the variable <strong>before<\/strong> the <code>&lt;a&gt;<\/code> tag.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php$blog_url='https:\/\/example.com\/blog\/';?&gt;&lt;ahref=\"&lt;?phpechoesc_url( $blog_url ); ?&gt;\"class=\"btn-ghost-kernel\"&gt;    Browse all articles&lt;\/a&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress recommends using <code>esc_url()<\/code> when outputting a URL in an <code>href<\/code>, as you&#8217;re already doing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">If you actually meant <code>$vblog_url<\/code><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If your code currently has:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;ahref=\"&lt;?phpechoesc_url($blog_url); ?&gt;\"class=\"btn-ghost-kernel\"&gt;    Browse all articles&lt;\/a&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">but you want to use <code>$vblog_url<\/code>, simply change it to:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;ahref=\"&lt;?phpechoesc_url($vblog_url); ?&gt;\"class=\"btn-ghost-kernel\"&gt;    Browse all articles&lt;\/a&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then define <code>$vblog_url<\/code> beforehand:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php$vblog_url='https:\/\/example.com\/articles\/';?&gt;<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">If you want to modify the existing URL<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For example, if <code>$blog_url<\/code> is already:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">https:\/\/example.com\/blog\/<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">and you want to add a query parameter such as <code>?category=news<\/code>, WordPress has <code>add_query_arg()<\/code> for this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php$vblog_url=add_query_arg('category','news',$blog_url);?&gt;&lt;ahref=\"&lt;?phpechoesc_url( $vblog_url ); ?&gt;\"class=\"btn-ghost-kernel\"&gt;    Browse all articles&lt;\/a&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><code>add_query_arg()<\/code> builds the modified URL, while <code>esc_url()<\/code> should still be used when outputting it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you show me <strong>where <code>$blog_url<\/code> is currently defined<\/strong>, I can tell you exactly what line to change.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Where can i change it in the admin?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If <code>$blog_url<\/code> is coming from a WordPress theme\/plugin, <strong>you usually can&#8217;t change it directly from the normal WordPress admin unless the developer made it an editable setting<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Check these places:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>WordPress Admin \u2192 Settings<\/strong>\n<ul class=\"wp-block-list\">\n<li>Look for something like <strong>Blog<\/strong>, <strong>Reading<\/strong>, or <strong>Theme Settings<\/strong>.<\/li>\n\n\n\n<li>Go to <strong>Settings \u2192 Reading<\/strong> and check the <strong>Posts page<\/strong> setting. This is commonly where the blog\/archive URL comes from.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Appearance \u2192 Customize<\/strong>\n<ul class=\"wp-block-list\">\n<li>Look under <strong>Theme Options<\/strong>, <strong>Homepage Settings<\/strong>, <strong>Menus<\/strong>, etc.<\/li>\n\n\n\n<li>The link may be configured there.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Pages \u2192 All Pages<\/strong>\n<ul class=\"wp-block-list\">\n<li>Find the page you want the \u201cBrowse all articles\u201d button to point to.<\/li>\n\n\n\n<li>If it&#8217;s the WordPress posts archive, check <strong>Settings \u2192 Reading \u2192 Posts page<\/strong>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>If none of those contain it<\/strong>\n<ul class=\"wp-block-list\">\n<li><code>$blog_url<\/code> is probably being generated in PHP, e.g.: $blog_url = get_permalink(&#8230;); or $blog_url = get_post_type_archive_link(&#8230;);<\/li>\n\n\n\n<li>In that case, you need to change the PHP\/theme configuration rather than an admin setting.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If you paste the <strong>10\u201320 lines above<\/strong> this code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;ahref=\"&lt;?phpechoesc_url($blog_url); ?&gt;\"class=\"btn-ghost-kernel\"&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">I can identify <strong>exactly where <code>$blog_url<\/code> is coming from and whether you can change it in WordPress Admin<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&lt;a href=&#8221;&lt;?php echo esc_url($blog_url); ?&gt;&#8221; class=&#8221;btn-ghost-kernel&#8221;&gt;Browse all articles&lt;\/a&gt; How can I modify the $vblog_url?? If you mean \u201chow do I\u2026<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[55],"tags":[],"class_list":["post-126","post","type-post","status-publish","format-standard","hentry","category-digital-solutions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Testing 02 - LuxService.eu Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/luxservice.eu\/blog\/testing-02\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Testing 02 - LuxService.eu Blog\" \/>\n<meta property=\"og:description\" content=\"&lt;a href=&#8221;&lt;?php echo esc_url($blog_url); ?&gt;&#8221; class=&#8221;btn-ghost-kernel&#8221;&gt;Browse all articles&lt;\/a&gt; How can I modify the $vblog_url?? If you mean \u201chow do I\u2026\" \/>\n<meta property=\"og:url\" content=\"https:\/\/luxservice.eu\/blog\/testing-02\/\" \/>\n<meta property=\"og:site_name\" content=\"LuxService.eu Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/share\/1AtkWJ1aXT\/?mibextid=wwXIfr\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-18T13:16:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-18T13:16:35+00:00\" \/>\n<meta name=\"author\" content=\"SmartTeller\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@smartteller_hub\" \/>\n<meta name=\"twitter:site\" content=\"@smartteller_hub\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"SmartTeller\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/\"},\"author\":{\"name\":\"SmartTeller\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#\\\/schema\\\/person\\\/1d459a65bcc3ab6eaa71804252e2fc73\"},\"headline\":\"Testing 02\",\"datePublished\":\"2026-08-18T13:16:32+00:00\",\"dateModified\":\"2026-08-18T13:16:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/\"},\"wordCount\":326,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#organization\"},\"articleSection\":[\"Digital Solutions\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/\",\"url\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/\",\"name\":\"Testing 02 - LuxService.eu Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#website\"},\"datePublished\":\"2026-08-18T13:16:32+00:00\",\"dateModified\":\"2026-08-18T13:16:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/testing-02\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Testing 02\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/\",\"name\":\"Smartteller Blog\",\"description\":\"Where Talent Meets Opportunity\",\"publisher\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#organization\",\"name\":\"Smartteller Blog\",\"url\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/localhost\\\/smartblog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/smartteller-logo-1.png\",\"contentUrl\":\"http:\\\/\\\/localhost\\\/smartblog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/smartteller-logo-1.png\",\"width\":744,\"height\":142,\"caption\":\"Smartteller Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/share\\\/1AtkWJ1aXT\\\/?mibextid=wwXIfr\",\"https:\\\/\\\/x.com\\\/smartteller_hub\",\"https:\\\/\\\/www.instagram.com\\\/smartteller_hub?igsh=NG1hd3g1dG05M25v\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/smartteller\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/#\\\/schema\\\/person\\\/1d459a65bcc3ab6eaa71804252e2fc73\",\"name\":\"SmartTeller\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g\",\"caption\":\"SmartTeller\"},\"sameAs\":[\"https:\\\/\\\/smartteller.tech\"],\"url\":\"https:\\\/\\\/luxservice.eu\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Testing 02 - LuxService.eu Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/luxservice.eu\/blog\/testing-02\/","og_locale":"en_US","og_type":"article","og_title":"Testing 02 - LuxService.eu Blog","og_description":"&lt;a href=&#8221;&lt;?php echo esc_url($blog_url); ?&gt;&#8221; class=&#8221;btn-ghost-kernel&#8221;&gt;Browse all articles&lt;\/a&gt; How can I modify the $vblog_url?? If you mean \u201chow do I\u2026","og_url":"https:\/\/luxservice.eu\/blog\/testing-02\/","og_site_name":"LuxService.eu Blog","article_publisher":"https:\/\/www.facebook.com\/share\/1AtkWJ1aXT\/?mibextid=wwXIfr","article_published_time":"2026-08-18T13:16:32+00:00","article_modified_time":"2026-08-18T13:16:35+00:00","author":"SmartTeller","twitter_card":"summary_large_image","twitter_creator":"@smartteller_hub","twitter_site":"@smartteller_hub","twitter_misc":{"Written by":"SmartTeller","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/luxservice.eu\/blog\/testing-02\/#article","isPartOf":{"@id":"https:\/\/luxservice.eu\/blog\/testing-02\/"},"author":{"name":"SmartTeller","@id":"https:\/\/luxservice.eu\/blog\/#\/schema\/person\/1d459a65bcc3ab6eaa71804252e2fc73"},"headline":"Testing 02","datePublished":"2026-08-18T13:16:32+00:00","dateModified":"2026-08-18T13:16:35+00:00","mainEntityOfPage":{"@id":"https:\/\/luxservice.eu\/blog\/testing-02\/"},"wordCount":326,"commentCount":1,"publisher":{"@id":"https:\/\/luxservice.eu\/blog\/#organization"},"articleSection":["Digital Solutions"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/luxservice.eu\/blog\/testing-02\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/luxservice.eu\/blog\/testing-02\/","url":"https:\/\/luxservice.eu\/blog\/testing-02\/","name":"Testing 02 - LuxService.eu Blog","isPartOf":{"@id":"https:\/\/luxservice.eu\/blog\/#website"},"datePublished":"2026-08-18T13:16:32+00:00","dateModified":"2026-08-18T13:16:35+00:00","breadcrumb":{"@id":"https:\/\/luxservice.eu\/blog\/testing-02\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/luxservice.eu\/blog\/testing-02\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/luxservice.eu\/blog\/testing-02\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/luxservice.eu\/blog\/"},{"@type":"ListItem","position":2,"name":"Testing 02"}]},{"@type":"WebSite","@id":"https:\/\/luxservice.eu\/blog\/#website","url":"https:\/\/luxservice.eu\/blog\/","name":"Smartteller Blog","description":"Where Talent Meets Opportunity","publisher":{"@id":"https:\/\/luxservice.eu\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/luxservice.eu\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/luxservice.eu\/blog\/#organization","name":"Smartteller Blog","url":"https:\/\/luxservice.eu\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/luxservice.eu\/blog\/#\/schema\/logo\/image\/","url":"http:\/\/localhost\/smartblog\/wp-content\/uploads\/2026\/07\/smartteller-logo-1.png","contentUrl":"http:\/\/localhost\/smartblog\/wp-content\/uploads\/2026\/07\/smartteller-logo-1.png","width":744,"height":142,"caption":"Smartteller Blog"},"image":{"@id":"https:\/\/luxservice.eu\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/share\/1AtkWJ1aXT\/?mibextid=wwXIfr","https:\/\/x.com\/smartteller_hub","https:\/\/www.instagram.com\/smartteller_hub?igsh=NG1hd3g1dG05M25v","https:\/\/www.linkedin.com\/company\/smartteller\/"]},{"@type":"Person","@id":"https:\/\/luxservice.eu\/blog\/#\/schema\/person\/1d459a65bcc3ab6eaa71804252e2fc73","name":"SmartTeller","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed828318fcc63c68aecfa2ff18b7dd7fe031f52e3d103f61c617fa7484ee341a?s=96&d=mm&r=g","caption":"SmartTeller"},"sameAs":["https:\/\/smartteller.tech"],"url":"https:\/\/luxservice.eu\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/posts\/126","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/comments?post=126"}],"version-history":[{"count":1,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/posts\/126\/revisions"}],"predecessor-version":[{"id":127,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/posts\/126\/revisions\/127"}],"wp:attachment":[{"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/media?parent=126"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/categories?post=126"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/luxservice.eu\/blog\/wp-json\/wp\/v2\/tags?post=126"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}