Forum

Content Audit Proce...
 
Notifications
Clear all

Content Audit Process for Pinterest

5 Posts
3 Users
8 Reactions
31 Views
Andy
Posts: 205
 Andy
Admin
Topic starter
(@andy)
Member
Joined: 1 year ago

Hey Gang,

Thought I'd shoot a quick video on something that I was working on the other day when I was trying to do a content audit on some of my sites. Here is the video:

 

(Experimental And Unedited) Step-by-Step Content Audit Guide

Introduction

  • Purpose: To conduct a content audit on a website to optimize traffic from Pinterest.

  • Inspiration: Based on a content audit method shared by Matt Diggity for Google.

Step 1: Access Google Analytics

  • Navigate to Google Analytics.

  • Go to the Home Section.

Step 2: View Traffic Acquisition

  • Click on Reports.

  • Select Acquisition, then Traffic Acquisition.

Step 3: Filter for Pinterest Traffic

  • Scroll down to view sessions by primary channel.

  • Focus on Session Source/Medium.

  • Type "Pinterest" in the search bar to filter results.

Step 4: Sort Data

  • Choose the desired date range (last 28 days, 60 days, 90 days, or 12 months).

  • Click on Share this export to download the data.

Step 5: Export Data

  • Select to export the data to Google Sheets or download as a CSV file.

Step 6: Combine Duplicate URLs

  • Identify and combine sessions from similar URLs to get a comprehensive view.

  • Note the number of sessions from various regions (e.g., U.S., Canada, UK).

Step 7: Use Python for Data Processing

  • Employ a Python script (provided by the speaker) to aggregate session data.

  • Input the downloaded data into the script to consolidate the traffic data.

Step 8: Prune Low-Performing Content

  • Analyze the consolidated data to identify URLs with less than 30 clicks.

  • Prune content that doesn't meet the performance threshold.

Conclusion

  • Purpose of the audit: To understand what content is performing well on Pinterest and what isn't.

  • Encouragement to reach out with questions or for further assistance.

Closing Remarks

  • Invite feedback on the usefulness of the guide.

ChatGPT Thread: https://chatgpt.com/share/67b600d3-2338-8006-9d67-ba6048066c68

Script:

import pandas as pd

# Read the CSV file (update the filename if needed)
input_file = 'ga4_data.csv'
df = pd.read_csv(input_file)

# Display the first few rows to check that columns are loaded correctly
print("Initial data preview:")
print(df.head())

# Group by the URL column and sum the sessions
# This assumes that your sessions column is numeric
aggregated_df = df.groupby('URL', as_index=False).agg({'Sessions': 'sum'})

# If you have other columns that you want to keep, you may need to adjust this step.
# For example, if you want to keep the first occurrence of other columns:
# aggregated_df = df.groupby('URL', as_index=False).agg({'Sessions': 'sum', 'OtherColumn': 'first', ...})

# Save the aggregated data to a new CSV file
output_file = 'aggregated_ga4_data.csv'
aggregated_df.to_csv(output_file, index=False)

print(f"Aggregated data has been saved to {output_file}")

 

4 Replies
Posts: 420
(@ohnoo_not_her)
Prominent Member
Joined: 1 year ago

thanks Andy, this comes in handy! I realise now that the dip in Pinterest traffic must have been a bug of some kind, as it is going back up now.
At the same time of the traffic dive, i asked Diane if she saw a particular pin and I know other people saw that pin to, but the views remained at zero, that was weird. And I think at the same time, the possibility of creating "idea pins" also disappeared completely in my area. So I think they were updating that or something over here.

So now I can only 'create pins' and no longer 'idea pins'. Is that latter still available in your area? Had a chat with GPT about it and it seems its going to be deleted worldwide. thanks for the code!

Reply
2 Replies
Andy
 Andy
Admin
(@andy)
Joined: 1 year ago

Member
Posts: 205

@ohnoo_not_her Yeah, that was a while ago that they started the process of removing idea pins. Soon, you should only have the ability to create a video pin or a single static image pin.

Not sure why you didn't get any views to the one pin. Might be a glitch (after working with FB groups for so long, I've finally come to realize how glitchy and buggy most platforms are, lol).

Reply
(@ohnoo_not_her)
Joined: 1 year ago

Prominent Member
Posts: 420

@andy defenitely lol. And user unfriendly to. Facebook is a nightmare to be honest with Meta and I'm trying to post more often on Reddit again: now that is a TOTAL disaster LOL

Reply
Posts: 1
(@shrestha)
New Member
Joined: 1 year ago

great

Reply

Leave a reply

Author Name

Author Email

Title *

Maximum allowed file size is 5MB

 
Preview 0 Revisions Saved